Skip to content

Commit 9d9ea11

Browse files
committed
user --> users
1 parent ccb5530 commit 9d9ea11

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

api/specs/webserver/openapi.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,19 @@ paths:
111111
# USER SETTINGS ------------------------------------------------------------------
112112

113113
/me:
114-
$ref: "./openapi-user.yaml#/paths/~1me"
114+
$ref: "./openapi-users.yaml#/paths/~1me"
115115

116116
/me/tokens:
117-
$ref: "./openapi-user.yaml#/paths/~1me~1tokens"
117+
$ref: "./openapi-users.yaml#/paths/~1me~1tokens"
118118

119119
/me/tokens/{service}:
120-
$ref: "./openapi-user.yaml#/paths/~1me~1tokens~1{service}"
120+
$ref: "./openapi-users.yaml#/paths/~1me~1tokens~1{service}"
121121

122122
/me/notifications:
123-
$ref: "./openapi-user.yaml#/paths/~1me~1notifications"
123+
$ref: "./openapi-users.yaml#/paths/~1me~1notifications"
124124

125125
/me/notifications/{id}:
126-
$ref: "./openapi-user.yaml#/paths/~1me~1notifications~1{notification_id}"
126+
$ref: "./openapi-users.yaml#/paths/~1me~1notifications~1{notification_id}"
127127

128128
# GROUP SETTINGS ------------------------------------------------------------------
129129

api/specs/webserver/scripts/openapi_users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ async def mark_notification_as_read(
134134
if __name__ == "__main__":
135135
from _common import CURRENT_DIR, create_openapi_specs
136136

137-
create_openapi_specs(app, CURRENT_DIR.parent / "openapi-user.yaml")
137+
create_openapi_specs(app, CURRENT_DIR.parent / "openapi-users.yaml")

0 commit comments

Comments
 (0)