( app: WorkspaceApp, )
| 157 | }; |
| 158 | |
| 159 | export const isExternalApp = ( |
| 160 | app: WorkspaceApp, |
| 161 | ): app is ExternalWorkspaceApp => { |
| 162 | return app.external && app.url !== undefined; |
| 163 | }; |
| 164 | |
| 165 | export const needsSessionToken = (app: ExternalWorkspaceApp) => { |
| 166 | // HTTP links should never need the session token, since Cookies |
no outgoing calls
no test coverage detected