Merge pull request 'Fixed Variable names' (#4) from develop/protobuf into main
All checks were successful
Gitea Build Check / Build (push) Successful in 9m49s

Reviewed-on: #4
This commit is contained in:
SoXX 2024-07-11 12:21:40 +00:00
commit fd48b6f63c
3 changed files with 10 additions and 9 deletions

View File

@ -130,9 +130,9 @@ func (s *server) GetUserMessages(ctx context.Context, request *gRPC.GetMessagesR
messageResponse.Messages = append(messageResponse.Messages, &gRPC.Message{ messageResponse.Messages = append(messageResponse.Messages, &gRPC.Message{
FromUserSourceId: request.UserSourceId, FromUserSourceId: request.UserSourceId,
FromUserSourceName: request.UserSourceName, FromUserSourceName: request.UserSourceName,
CreatedAt: message.createdAt, CreatedAt: message.CreatedAt,
Body: message.body, Body: message.Body,
Title: message.title, Title: message.Title,
}) })
} }

View File

@ -4,21 +4,22 @@ import (
"context" "context"
"errors" "errors"
"fmt" "fmt"
"log"
"net"
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/database" "git.dragse.it/anthrove/otter-space-sdk/v2/pkg/database"
otterError "git.dragse.it/anthrove/otter-space-sdk/v2/pkg/error" otterError "git.dragse.it/anthrove/otter-space-sdk/v2/pkg/error"
"git.dragse.it/anthrove/otter-space-sdk/v2/pkg/models" "git.dragse.it/anthrove/otter-space-sdk/v2/pkg/models"
"github.com/golang/protobuf/ptypes/timestamp" "github.com/golang/protobuf/ptypes/timestamp"
"log"
"net"
pb "git.dragse.it/anthrove/plug-sdk/v2/pkg/grpc" pb "git.dragse.it/anthrove/plug-sdk/v2/pkg/grpc"
"google.golang.org/grpc" "google.golang.org/grpc"
) )
type Message struct { type Message struct {
title string Title string
body string Body string
createdAt *timestamp.Timestamp CreatedAt *timestamp.Timestamp
} }
type TaskExecution func(ctx context.Context, database database.OtterSpace, userSourceUsername string, anthroveUser models.User, deepScrape bool, apiKey string, cancelFunction func()) error type TaskExecution func(ctx context.Context, database database.OtterSpace, userSourceUsername string, anthroveUser models.User, deepScrape bool, apiKey string, cancelFunction func()) error

@ -1 +1 @@
Subproject commit 241db7ceabcf9469e1121334c0803b3cdb4f99ad Subproject commit aa0ecfea7138f529f71fc7a13f7f887c0dcabcb2