mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
fd1420ddc8
* Initial commit * WIP * Fix lint * Fix tests * Add test for workspace migration * Rename title to use fileName instead of workspace name for designer * Linting
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
import {
|
|
getAppId,
|
|
} from './constants';
|
|
import { APP_ID_INSOMNIA } from '../../config';
|
|
|
|
export default {
|
|
workspace: getAppId() === APP_ID_INSOMNIA ? 'Workspace' : 'Document',
|
|
apiSpec: 'Document',
|
|
};
|