style(backend/models): change JSON names to camelCase

This commit is contained in:
Masahiko AMANO 2025-07-03 18:07:33 +03:00
parent 27184bf17a
commit 24075e5a76

View File

@ -9,7 +9,7 @@ import (
type User struct {
Name string `json:"name"`
IsAdmin bool `json:"is_admin"`
IsAdmin bool `json:"isAdmin"`
}
type MIME struct {
@ -28,7 +28,7 @@ type (
}
CategoryFull struct {
CategoryCore
CreatedAt time.Time `json:"created_at"`
CreatedAt time.Time `json:"createdAt"`
Creator User `json:"creator"`
Notes pgtype.Text `json:"notes"`
}
@ -42,12 +42,12 @@ type (
}
FileItem struct {
FileCore
CreatedAt time.Time `json:"created_at"`
CreatedAt time.Time `json:"createdAt"`
Creator User `json:"creator"`
}
FileFull struct {
FileCore
CreatedAt time.Time `json:"created_at"`
CreatedAt time.Time `json:"createdAt"`
Creator User `json:"creator"`
Notes pgtype.Text `json:"notes"`
Metadata *json.RawMessage `json:"metadata"`
@ -67,16 +67,16 @@ type (
TagFull struct {
TagCore
Category CategoryCore `json:"category"`
CreatedAt time.Time `json:"created_at"`
CreatedAt time.Time `json:"createdAt"`
Creator User `json:"creator"`
Notes pgtype.Text `json:"notes"`
}
)
type Autotag struct {
TriggerTag TagCore `json:"trigger_tag"`
AddTag TagCore `json:"add_tag"`
IsActive bool `json:"is_active"`
TriggerTag TagCore `json:"triggerTag"`
AddTag TagCore `json:"addTag"`
IsActive bool `json:"isActive"`
}
type (
@ -89,7 +89,7 @@ type (
}
PoolFull struct {
PoolCore
CreatedAt time.Time `json:"created_at"`
CreatedAt time.Time `json:"createdAt"`
Creator User `json:"creator"`
Notes pgtype.Text `json:"notes"`
}
@ -97,10 +97,10 @@ type (
type Session struct {
ID int `json:"id"`
UserAgent string `json:"user_agent"`
StartedAt time.Time `json:"started_at"`
ExpiresAt time.Time `json:"expires_at"`
LastActivity time.Time `json:"last_activity"`
UserAgent string `json:"userAgent"`
StartedAt time.Time `json:"startedAt"`
ExpiresAt time.Time `json:"expiresAt"`
LastActivity time.Time `json:"lastActivity"`
}
type Pagination struct {