WIP: Start implementing the internal auth

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2026-05-05 22:10:17 +02:00
parent e1e2515c97
commit bdd97c0163
2 changed files with 3 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ message ApplicationId {
}
message ApplicationMetadata {
string name = 1;
string name = 1;
string description = 2;
}
@@ -82,7 +82,7 @@ message ApplicationSpec {
string application = 1;
string version = 2;
string environemnt_id = 3;
map<string, string> config = 4;
map<string, string> config = 4;
string raw_config = 5;
}

View File

@@ -3,7 +3,7 @@ package email;
import "google/protobuf/empty.proto";
option go_package = "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg/email";
/*
/*
* A service that should handle email validation
*/
service EmailValidation {
@@ -19,4 +19,3 @@ message ConfirmValidation {
string user_id = 1;
int32 code = 2;
}