mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
318c35c2cb
* Some minor implementations * Some more * Lots more * Removed 'backend' alias * removed all promises * Removed a bunch of module exports stuff * Some morE' * Fix * custom DNS * Tests for DNS * bug fix * Some small adjustments * Small stuff
46 lines
931 B
JavaScript
46 lines
931 B
JavaScript
import * as db from '../index';
|
|
|
|
export const type = 'RequestGroup';
|
|
export const prefix = 'fld';
|
|
export function init () {
|
|
return db.initModel({
|
|
name: 'New Folder',
|
|
environment: {},
|
|
metaCollapsed: false,
|
|
metaSortKey: -1 * Date.now()
|
|
})
|
|
}
|
|
|
|
export function create (patch = {}) {
|
|
if (!patch.parentId) {
|
|
throw new Error('New Requests missing `parentId`', patch);
|
|
}
|
|
|
|
return db.docCreate(type, patch);
|
|
}
|
|
|
|
export function update (requestGroup, patch) {
|
|
return db.docUpdate(requestGroup, patch);
|
|
}
|
|
|
|
export function getById (id) {
|
|
return db.get(type, id);
|
|
}
|
|
|
|
export function findByParentId (parentId) {
|
|
return db.find(type, {parentId})
|
|
}
|
|
|
|
export function remove (requestGroup) {
|
|
return db.remove(requestGroup);
|
|
}
|
|
|
|
export function all () {
|
|
return db.all(type);
|
|
}
|
|
|
|
export function duplicate (requestGroup) {
|
|
const name = `${requestGroup.name} (Copy)`;
|
|
return db.duplicate(requestGroup, {name});
|
|
}
|