Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Hotfix] Changed user_role API to /user_roles instead of /user_roles/user/user_id #219

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/wca_live/wca/api.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@ defmodule WcaLive.Wca.Api do
def get_active_team_roles(wca_user_id, access_token) do
params = %{
"isActive" => true,
"groupType" => "teams_committees"
"groupType" => "teams_committees",
"userId" => wca_user_id
}

build_req()
|> with_user_token(access_token)
|> request(url: "/user_roles/user/#{wca_user_id}", params: params)
|> request(url: "/user_roles", params: params)
end

@doc """
Expand Down
Loading