1
0
mirror of https://github.com/bitwarden/cli synced 2026-01-06 18:23:14 +00:00

sub out create command

This commit is contained in:
Kyle Spearrin
2018-05-14 21:19:49 -04:00
parent 428f46af06
commit b5507813ab
4 changed files with 74 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
import { FolderView } from 'jslib/models/view/folderView';
export class FolderRequest {
static toView(req: FolderRequest) {
const view = new FolderView();
view.name = req.name;
return view;
}
name: string;
}