Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
ead7ca0
event repository
GaballaGit Feb 7, 2026
bb7a753
officer repository
GaballaGit Feb 7, 2026
c8768b7
announcement repository
GaballaGit Feb 7, 2026
b6dc46f
Tiers repository
GaballaGit Feb 7, 2026
95c4edf
Positions repository
GaballaGit Feb 7, 2026
e5468cf
quick fix in positions repository
GaballaGit Feb 7, 2026
ed77705
event repository
GaballaGit Feb 7, 2026
9b64cca
officer repository
GaballaGit Feb 7, 2026
60375df
announcement repository
GaballaGit Feb 7, 2026
0c72d90
Tiers repository
GaballaGit Feb 7, 2026
8848231
Positions repository
GaballaGit Feb 7, 2026
bf5ce16
quick fix in positions repository
GaballaGit Feb 7, 2026
eb65121
dto
GaballaGit Feb 8, 2026
369c97e
Merge remote-tracking branch 'refs/remotes/origin/refactor--domain-mo…
GaballaGit Feb 8, 2026
c6d3f95
DTO time should be unix int
GaballaGit Feb 9, 2026
99fb443
keep uuid for requests (for now)
GaballaGit Feb 9, 2026
d2d595c
Update func names for comminality
GaballaGit Feb 9, 2026
b455c19
why tf was I using pointers
GaballaGit Feb 9, 2026
d0ef173
announcements services
GaballaGit Feb 9, 2026
2cba177
Add To domain in dto requests
GaballaGit Feb 9, 2026
e83dd69
module name update for dto response
GaballaGit Feb 9, 2026
9a50b7c
Domain to DTO
GaballaGit Feb 9, 2026
19d4f33
omitempty on identifiers
GaballaGit Feb 10, 2026
1fb8cdf
revert omitempty
GaballaGit Feb 10, 2026
313ef5c
uuid check in services for announcements and events
GaballaGit Feb 10, 2026
867a9ca
Services for Officers, Positions, and Tiers
GaballaGit Feb 10, 2026
ee380d6
Officer, Position, and Tier handlers
GaballaGit Feb 10, 2026
5df60a7
Hook server and routes togther
GaballaGit Feb 10, 2026
4b538a5
Use Repo Interface
GaballaGit Feb 10, 2026
b7609f2
revert announcement put cli to use dbmodels
GaballaGit Feb 10, 2026
d154d49
Update error formatting internal/api/handlers/event.go
TheJolman Feb 11, 2026
8eea6af
add missing return in announcement handler
TheJolman Feb 11, 2026
f382543
add missing return in error handler
TheJolman Feb 11, 2026
613fbbd
fix swagger annotation
TheJolman Feb 11, 2026
bba9712
revert event post cli
GaballaGit Feb 11, 2026
9c25d64
clean leftover debug in announcements cli
GaballaGit Feb 13, 2026
2813d2b
Add uuid to event and announcements
GaballaGit Feb 13, 2026
7382dc8
fix swagger godoc annotations
GaballaGit Feb 13, 2026
dd46f1a
fix tiers being an export variable
GaballaGit Feb 13, 2026
709852b
use uuid param in tier update service
GaballaGit Feb 13, 2026
00348ae
update tier update param var name
GaballaGit Feb 13, 2026
ed89113
create mappers directory
GaballaGit Feb 13, 2026
8e86043
Fix godoc
GaballaGit Feb 15, 2026
153c9bb
Fix typo in repository model conv
GaballaGit Feb 15, 2026
de8cf00
Merge branch 'main' into refactor--domain-models
GaballaGit Feb 15, 2026
3a71aac
fix godoc typo in positions
GaballaGit Feb 15, 2026
22ce0d1
add update domain model
GaballaGit Feb 15, 2026
99ad120
Fix casting issues in mapper and repository
GaballaGit Feb 15, 2026
aaf07d5
Merge branch 'main' into refactor--domain-models
GaballaGit Feb 15, 2026
1989751
fix position models
GaballaGit Feb 15, 2026
8972cbc
attempt at conditional sql value validity
GaballaGit Feb 15, 2026
18895b1
Prettier test
GaballaGit Feb 18, 2026
e129e2d
add update models for DTO
GaballaGit Feb 18, 2026
11d1151
Add Update models to Domain and DTO layer
GaballaGit Feb 19, 2026
c8ca007
fix lint issues
GaballaGit Feb 19, 2026
6c97cf4
make test prettier
GaballaGit Feb 19, 2026
cd2c4d8
change announcements cli to use dto request
GaballaGit Feb 24, 2026
de38569
check against illegal var reference for announcements
GaballaGit Feb 24, 2026
e0b07c3
event nil dereference protection
GaballaGit Feb 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added Building
Empty file.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,13 @@ fmt: ## Format all go files
@go fmt ./...

check: ## Run static analysis on all go files
staticcheck ./...
@printf "[\t\033[1;34mBuilding project\033[0m\t]\n"
@go build ./... 2>&1 || (printf "\033[1;31;1mError building\033[0m: "; exit 1)
@printf "[\t\033[1;34mRunning staticcheck\033[0m\t]\n"
staticcheck -f stylish ./...

test: check ## Run all tests
@printf "[\t\033[1;34mRunning go tests\033[0m\t]\n"
go test ./...

check-sql: ## Lint all sql files
Expand Down
25 changes: 19 additions & 6 deletions internal/api/dbmodels/board.sql.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading