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 {