diff --git a/src/helpers/uriHelper.js b/src/helpers/uriHelper.js index 67dfc69..aa35fb4 100644 --- a/src/helpers/uriHelper.js +++ b/src/helpers/uriHelper.js @@ -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; } diff --git a/src/views/instructor/solocerts/New.vue b/src/views/instructor/solocerts/New.vue index 17b33dd..ab5d6b3 100644 --- a/src/views/instructor/solocerts/New.vue +++ b/src/views/instructor/solocerts/New.vue @@ -14,7 +14,7 @@ Please ensure that the student's training records have been entered onto their ZMA and VATUSA record prior to issuance of any solo certification.

- 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'.

Ensure that you enter solo certifications into the appropriate system in accordance with section 8.4 of the Miami ARTCC SOP. The student cannot take advantage of solo certifications that are @@ -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() {