Skip to content

Commit 493dabd

Browse files
committed
fix: stubbed out add editable action
1 parent 2211b63 commit 493dabd

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

lib/actions/add-editable/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
function addEditable() {
2+
3+
}
4+
5+
module.exports = addEditable

lib/actions/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
initAction: require('./init'),
33
newBlueprintAction: require('./new-blueprint'),
4-
addModelAction: require('./add-model')
4+
addModelAction: require('./add-model'),
5+
addEditableAction: require('./add-editable')
56
}

0 commit comments

Comments
 (0)