From 2ff351e4f89c0d6e4f180c1da804ab0ea61594f4 Mon Sep 17 00:00:00 2001 From: iChemy Date: Thu, 2 Nov 2023 18:37:23 +0900 Subject: [PATCH] :recycle: fix some --- docs/swagger.yaml | 9 +++++---- router/presentation/query.go | 6 +++--- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/swagger.yaml b/docs/swagger.yaml index 0714911e..4235f2b4 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -1200,10 +1200,11 @@ components: name: relation in: query required: false - description: どのような関係性でユーザーと結びつけるか。 - |取り得る値は、admins(ユーザーが管理者), belongs(ユーザーが所属している), belongs-or-admins(ユーザーが管理者または所属している) - |イベントはさらに、attendees(not absent) - |値がない場合は、belongs として振る舞う + description: | + どのような関係性でユーザーと結びつけるか。 取り得る値は、 + admins(ユーザーが管理者), belongs(ユーザーが所属している), + belongs-or-admins(ユーザーが管理者または所属している) + イベントはさらに、attendees(not absent) 値がない場合は、belongs として振る舞う schema: type: string enum: diff --git a/router/presentation/query.go b/router/presentation/query.go index a8256567..ec90f8a7 100644 --- a/router/presentation/query.go +++ b/router/presentation/query.go @@ -27,9 +27,9 @@ func GetTiemRange(values url.Values) (start time.Time, end time.Time, err error) type UserRelation int const ( - RelationBelongs = iota - RelationAdmins = iota - RelationBelongsOrAdmins = iota + RelationBelongs UserRelation = iota + RelationAdmins + RelationBelongsOrAdmins ) func GetUserRelationQuery(values url.Values) UserRelation {