mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-03-24 20:40:23 +00:00
* fix(meeting_id): Depends on jitsi_session(uses session.user_region). * feat(authentication): A static page that can be used with some auth providers like keycloak. * fix(authentication): Implements inline authentication. squash: Adds refresh token use when refresh token is needed on connection resuming. squash: Fix bugs and move to PKCE flow. * squash: Adds nonce verification. * squash: Drops the closing logic. * squash: Replace resuming event with CONNECTION_TOKEN_EXPIRED one. * squash: Fixes comments. * squash: Make sure we use tokenAuthUrl only when it is set and is not jaas. * squash: Move CONNECTION_TOKEN_EXPIRED to web only middleware as it uses web only logic for now. * squash: Fix comments.
20 lines
497 B
TypeScript
20 lines
497 B
TypeScript
|
|
import RootNavigationContainer from '../mobile/navigation/components/RootNavigationContainer';
|
|
|
|
const route = {
|
|
component: RootNavigationContainer,
|
|
href: undefined
|
|
};
|
|
|
|
/**
|
|
* Determines which route is to be rendered in order to depict a specific Redux
|
|
* store.
|
|
*
|
|
* @param {any} _stateful - Used on web.
|
|
* @param {any} _dispatch - Used on web.
|
|
* @returns {Promise<Object>}
|
|
*/
|
|
export function _getRouteToRender(_stateful?: any): Promise<object> {
|
|
return Promise.resolve(route);
|
|
}
|