File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
templates/cli/lib/commands Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -230,19 +230,13 @@ const awaitPools = {
230
230
},
231
231
}
232
232
233
- const push = new Command("push")
234
- .description(commandDescriptions['push'])
235
- .option(`--all`, `Flag to push all resources`)
236
- .option(`--yes`, `Flag to confirm all warnings`)
237
- .action(actionRunner(pushResources));
238
-
239
233
const pushResources = async ({ all, yes } = {}) => {
240
234
const actions = {
241
235
functions: pushFunction,
242
236
collections: pushCollection,
243
237
buckets: pushBucket,
244
238
teams: pushTeam,
245
- messages: new Function()
239
+ messages: pushMessagingTopic
246
240
}
247
241
248
242
if (all) {
@@ -1006,6 +1000,11 @@ const pushMessagingTopic = async ({ all, yes } = {}) => {
1006
1000
}
1007
1001
}
1008
1002
1003
+ const push = new Command("push")
1004
+ .description(commandDescriptions['push'])
1005
+ .option(`--all`, `Flag to push all resources`)
1006
+ .option(`--yes`, `Flag to confirm all warnings`)
1007
+ .action(actionRunner(pushResources));
1009
1008
1010
1009
push
1011
1010
.command("function")
You can’t perform that action at this time.
0 commit comments