Skip to content

Commit

Permalink
fix: change team to guilds
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobCoffee committed Feb 26, 2024
1 parent 00f0245 commit b701ea2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/server/domain/guilds/controllers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""User Account Controllers."""
"""Guilds Controllers."""
from __future__ import annotations

from typing import TYPE_CHECKING
Expand All @@ -24,9 +24,9 @@ class GuildsController(Controller):
dependencies = {"guilds_service": Provide(provides_guild_config_service)}

@get(
operation_id="ListTeams",
name="teams:list",
summary="List Teams",
operation_id="ListGuilds",
name="guilds:list",
summary="List all guilds",
path=urls.GUILDS_LIST,
)
async def list_guilds(
Expand Down

0 comments on commit b701ea2

Please sign in to comment.