class Api::V1::Accounts::Microsoft::AuthorizationsController < Api::V1::Accounts::OauthAuthorizationController include MicrosoftConcern def create redirect_url = microsoft_client.auth_code.authorize_url( { redirect_uri: "#{base_url}/microsoft/callback", scope: scope, state: state, # Force the Microsoft account picker so an already-signed-in account does not # silently authorize and re-bind to an existing inbox in the new-inbox flow. prompt: 'select_account' } ) if redirect_url render json: { success: true, url: redirect_url } else render json: { success: false }, status: :unprocessable_entity end end end