-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c9dc07
commit 194bc36
Showing
4 changed files
with
44 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
|
||
function handleBuildATO(send){ | ||
// Send post fetch to mission server | ||
send('build') | ||
} | ||
|
||
function handlePublishATO(send){ | ||
// Fetch mission server from dashboard | ||
send('publish') | ||
} | ||
|
||
function handleRestoreMsnData(send){ | ||
send('restore') | ||
} | ||
|
||
export default [ | ||
{ | ||
label: "Build ATO", | ||
desc: "", | ||
desc: "MSN API Server will build the ATO", | ||
handler: handleBuildATO | ||
}, | ||
{ | ||
label: "Publish ATO", | ||
desc: "", | ||
desc: "MSN API Server will publish the ATO to the MSN Dashboard", | ||
handler: handlePublishATO | ||
}, | ||
{ | ||
label: "Restore ATO Data", | ||
desc: "MSN Data Servers will overwrite MSN Data with backup data", | ||
handler: handleRestoreMsnData | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters