Files
chatwoot/app/controllers/microsoft/callbacks_controller.rb
T
Shivam Mishra 4582794ad4 feat: bring back Microsoft Controller
I made a booboo, Microsoft concern was actually used in Microsoft::AuthorizationsController, which needed the OAuth client, let's bring it back
2024-06-02 19:34:33 +05:30

18 lines
249 B
Ruby

class Microsoft::CallbacksController < OauthCallbackController
include MicrosoftConcern
private
def oauth_client
microsoft_client
end
def provider_name
'microsoft'
end
def imap_address
'outlook.office365.com'
end
end