Merge branch 'develop' into feat/voice-channel

This commit is contained in:
Sojan Jose
2025-06-26 22:13:17 -07:00
committed by GitHub
32 changed files with 992 additions and 39 deletions
@@ -0,0 +1,14 @@
/* global axios */
import ApiClient from './ApiClient';
class NotionOAuthClient extends ApiClient {
constructor() {
super('notion', { accountScoped: true });
}
generateAuthorization() {
return axios.post(`${this.url}/authorization`);
}
}
export default new NotionOAuthClient();