Skip to content

Commit

Permalink
♻️ fix some
Browse files Browse the repository at this point in the history
  • Loading branch information
iChemy committed Nov 2, 2023
1 parent 4a6e1ee commit 2ff351e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions router/presentation/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2ff351e

Please sign in to comment.