This file contains hidden or 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
Triage States | |
Active | |
Assign to New Owner -> Waiting Acknowledgement | |
Investigating | |
Sets of Actions -> Pending Sign-Off | |
Assign to New Owner -> Waiting Acknowledgement | |
Pending Sign-Off | |
Finish Actions ->Resolved | |
Waiting Acknowledgement |
This file contains hidden or 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
<Frame x:Name="bottomSheet" HasShadow="true" CornerRadius="8" Padding="1,4,1,0" BackgroundColor="#faf9f8" | |
RelativeLayout.YConstraint="{ConstraintExpression Type=RelativeToParent,Property=Height,Factor=.9,Constant=0}" | |
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent,Property=Width,Factor=1,Constant=0}" | |
RelativeLayout.HeightConstraint="{ConstraintExpression | |
Type=RelativeToParent,Property=Height,Factor=1,Constant=0}"> | |
</Frame> |
This file contains hidden or 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
Triage States | |
Active | |
Assign to New Owner -> Waiting Acknowledgement | |
Investigating | |
Sets of Actions -> Pending Sign-Off | |
Assign to New Owner -> Waiting Acknowledgement | |
Pending Sign-Off | |
Finish Actions ->Resolved | |
Waiting Acknowledgement | |
Accept -> Investigating |
This file contains hidden or 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
Build Break Actions | |
Build Break | |
Rerun Build -> View Logs | |
Ping Possbile PR Owners -> Owner Notified | |
View Logs | |
Read Logs -> View Logs | |
Log Actions -> Resolve | |
This file contains hidden or 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
Build Break Actions | |
Build Break | |
Rerun Build -> View Logs | |
Ping Possbile PR Owners -> Owner Notified | |
View Logs | |
Read Logs -> View Logs | |
Log Actions -> Resolve | |
This file contains hidden or 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
Pilot Talk States | |
Park | |
Request Take Off -> Runway | |
Runway | |
Clear Take Off -> Traffic Pattern | |
Request Parking -> Park | |
Traffic Pattern | |
Request Landing -> Runway | |
Stay In Pattern -> Traffic Pattern | |
Away |
This file contains hidden or 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
Pilot Voice Interaction | |
Request | |
Pilot Requests -> ATC Confirmation | |
ATC Confirmation | |
Pilot Repeats Instruction -> Complete | |
Complete | |
This file contains hidden or 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
Change Owners Dialog | |
Select Only Files -> Approve Ownership | |
Select only directories-> Render Preview | |
Select mixture of directory of file -> Render Preview | |
# Respect the Undo, if the user | |
Render Preview | |
Checked Subfolders Option -> Show all files | |
Unchecked Subfolders Option -> Show only relevant files and folders |
This file contains hidden or 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
// Helper function for AWS Lambda API responses, can pass in JSON or string and status code and message to respond with | |
function BuildResponse(statusCode, responseBody, shouldStringify = false) { | |
let body = "invalid response"; | |
if (shouldStringify) { | |
body = JSON.stringify(responseBody); | |
} else { | |
body = JSON.stringify({ msg: responseBody }); | |
} |
This file contains hidden or 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
//pass in a csv file | |
//record looks like this: { item: 'another/test/blank.cpp', org: 'tester', churn: '1' } | |
//convert the source path to a tree like this: | |
/* | |
{ | |
"another": { | |
"test":{ | |
"blank.cpp":{} | |
} |