add actions and auth

This commit is contained in:
2025-05-17 12:08:44 +07:00
parent 4bd18ee756
commit e1b342d12c
14 changed files with 487 additions and 246 deletions
+7
View File
@@ -25,3 +25,10 @@ func mapProtoTeamsToTeam(team *proto.Team) *models.Team {
Name: team.Name,
}
}
func mapActionToProtoAction(action *models.Action) *proto.Action {
return &proto.Action{
Id: action.ID,
Place: action.Place,
}
}