Skip to content

Commit

Permalink
fix: update redirect uri and quest id
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushtom committed Nov 30, 2023
1 parent 1c7fde6 commit 8311cf0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub async fn handler(
State(state): State<Arc<AppState>>,
Query(query): Query<TwitterOAuthCallbackQuery>,
) -> impl IntoResponse {
let quest_id = 124;
let quest_id = 21;
let task_id = 87;
let guild_id = "986385497888792598";
let authorization_code = &query.code;
Expand All @@ -48,7 +48,7 @@ pub async fn handler(
(
"redirect_uri",
&format!(
"{}/quests/avnu/discord_fw_callback",
"{}/quests/focustree/discord_fw_callback",
state.conf.variables.api_link
),
),
Expand Down

0 comments on commit 8311cf0

Please sign in to comment.