Skip to content

Commit

Permalink
solo label change
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcoombs2000 committed Jan 28, 2024
1 parent 25c1112 commit 76781b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions src/helpers/uriHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ export const vatsimAuthRedirectUrl = `${getAuthEndpoint()}/oauth/authorize?clien
export const discordRedirectUrl = `https://discord.com/api/oauth2/authorize?client_id=546531280842653696&redirect_uri=https%3A%2F%2Fzmaartcc.net%2Fconnect%2Fdiscord&response_type=code&scope=identify`;

function getClientId() {
const ClientId = 1246;
// const ClientId = 1188;

return ClientId;
// const ClientId = 1246;
const ClientId = 1188;
return ClientId;

}

Expand Down
4 changes: 2 additions & 2 deletions src/views/instructor/solocerts/New.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Please ensure that the student's training records have been entered onto their ZMA and VATUSA
record <b>prior</b> to issuance of any solo certification.
<br><br>
Tier 2 Solo Certifications should be entered as 'TWR', 'APP', or 'CTR'.
Tier 2 Solo Certifications should be entered as 'ZMA_TWR', 'ZMA_APP', or 'ZMA_CTR'.
<br><br>
Ensure that you enter solo certifications into the appropriate system in accordance with section
<b>8.4 of the Miami ARTCC SOP</b>. The student <i>cannot</i> take advantage of solo certifications that are
Expand Down Expand Up @@ -94,7 +94,7 @@ export default {
async getControllers() {
const {data} = await zabApi.get('/feedback/controllers');
this.controllers = data.data.filter(c => {
return c.rating > 2 && c.vis == false;
return c.rating > 1 && c.vis == false;
});
},
async submitCert() {
Expand Down

0 comments on commit 76781b4

Please sign in to comment.