We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a7fc5 commit 36ef559Copy full SHA for 36ef559
src/yazz_helper_module.js
@@ -987,6 +987,15 @@ module.exports = {
987
let propertiesAsJsonString = null
988
let existingCodeAlreadyInSystemCodeTable
989
let save_code_to_file = null
990
+ let stampedAs = "SAVE"
991
+ let commit = yz.helpers.getValueOfCodeString(code,"commit")
992
+ if (commit) {
993
+ stampedAs = "COMMIT"
994
+ }
995
+ let release = yz.helpers.getValueOfCodeString(code,"release")
996
+ if (release) {
997
+ stampedAs = "RELEASE"
998
999
1000
let promise = new Promise(async function(returnFn) {
1001
@@ -1075,7 +1084,8 @@ module.exports = {
1075
1084
save_code_to_file,
1076
1085
codeChangesStr,
1077
1086
numCodeChanges,
1078
- userId
1087
+ userId,
1088
+ stampedAs
1079
1089
})
1080
1090
1081
1091
await mm.pointEditMarkerAtCommit(
0 commit comments