mirror of
https://github.com/go-shiori/shiori.git
synced 2025-09-16 18:05:39 +08:00
* config: backwards comptabile dir * remove duplicated frontend * frontend: move assets to assets folder * legacy routes handler in gin * templates and asset in different embed * new routes * frontend routes serve old views * added DTO for account object * api auth calls legacy handler * frontend: handle new error messages * frontend: update urls * frontend: login using new api * updated frontend tests * chore: remove debug route * create shiori/gopher user if no owner is present * server as default command * serve -> server * refactored database logic, allow database url * removed unused configuration * storage docs * refactor cli to use cfg and deps * check errors only in server * log fatal instead of os exit * dont default data directory to current dir * fixed sqlite path * trigger build on prs * avoid releasing if lint/test fails * pull request condition * event -> event_name * Get correct pull request number * added workflow to delete dangling tags * fix: nil error checking * set gin mode first * set gin mode before initialization * fix logger * allow version bump from custom ref * Updated matrix link to workspace
25 lines
625 B
Go
25 lines
625 B
Go
package model
|
|
|
|
// Account is the database model for account.
|
|
type Account struct {
|
|
ID int `db:"id" json:"id"`
|
|
Username string `db:"username" json:"username"`
|
|
Password string `db:"password" json:"password,omitempty"`
|
|
Owner bool `db:"owner" json:"owner"`
|
|
}
|
|
|
|
// ToDTO converts Account to AccountDTO.
|
|
func (a Account) ToDTO() AccountDTO {
|
|
return AccountDTO{
|
|
ID: a.ID,
|
|
Username: a.Username,
|
|
Owner: a.Owner,
|
|
}
|
|
}
|
|
|
|
// AccountDTO is data transfer object for Account.
|
|
type AccountDTO struct {
|
|
ID int `json:"id"`
|
|
Username string `json:"username"`
|
|
Owner bool `json:"owner"`
|
|
}
|