mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
e3f9e3c1d4
Co-authored-by: Opender Singh <opender94@gmail.com>
9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
import { getAppId } from './constants';
|
|
import { APP_ID_INSOMNIA } from '../../config';
|
|
|
|
export default {
|
|
workspace: getAppId() === APP_ID_INSOMNIA ? 'Workspace' : 'Document',
|
|
workspaces: getAppId() === APP_ID_INSOMNIA ? 'Workspaces' : 'Documents',
|
|
apiSpec: 'Document',
|
|
};
|