summaryrefslogtreecommitdiff
path: root/server/admin
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-09-06 09:30:41 -0700
committerMichael Hunteman <michael@huntm.net>2024-09-06 09:30:41 -0700
commit218b7677d722ce08a4f139f67bbae74f43b9a158 (patch)
treee5a9908b2249252a00833b02d02825c9f6ba73a3 /server/admin
parent46f925663e595fa8dd87f7aa15a0061abcfae3d7 (diff)
Fix error message
Diffstat (limited to 'server/admin')
-rw-r--r--server/admin/store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/admin/store.go b/server/admin/store.go
index 437e6af..c466b95 100644
--- a/server/admin/store.go
+++ b/server/admin/store.go
@@ -30,7 +30,7 @@ func (store Store) Find(requestAdmin Admin) (Admin, error) {
if found {
return admin, nil
}
- return Admin{}, errors.New("admin not found")
+ return Admin{}, errors.New("Admin not found")
}
func createAdmin(requestAdmin Admin, adminRows pgx.Rows) (Admin, bool) {