change variable name

This commit is contained in:
Lisa Passing 2015-04-08 16:24:25 +02:00
parent 95cb234afa
commit e33f38a159
2 changed files with 4 additions and 4 deletions

View File

@ -31,10 +31,10 @@
<p class="profile-text">You are not currently a member of <br> any organization.</p> <p class="profile-text">You are not currently a member of <br> any organization.</p>
{{/collection}} {{/collection}}
</section> </section>
{{#if config.githubOrgsSettingsUrl}} {{#if config.githubOrgsOauthAccessSettingsUrl}}
<section class="profile-additional"> <section class="profile-additional">
<p>Is an organization missing?<br> <p>Is an organization missing?<br>
<a {{bind-attr href="config.githubOrgsSettingsUrl"}} title="Organization settings on GitHub">Review and add</a> your authorized Orgs.</p> <a {{bind-attr href="config.githubOrgsOauthAccessSettingsUrl"}} title="Orgs Oauth Access Settings on GitHub">Review and add</a> your authorized Orgs.</p>
</section> </section>
{{/if}} {{/if}}
</aside> </aside>

View File

@ -31,7 +31,7 @@ module.exports = function(environment) {
endpoints: {}, endpoints: {},
intervals: { updateTimes: 1000 }, intervals: { updateTimes: 1000 },
statusPageStatusUrl: 'https://pnpcptp8xh9k.statuspage.io/api/v2/status.json', statusPageStatusUrl: 'https://pnpcptp8xh9k.statuspage.io/api/v2/status.json',
githubOrgsSettingsUrl: 'https://github.com/settings/connections/4753903' githubOrgsOauthAccessSettingsUrl: 'https://github.com/settings/connections/4753903'
}; };
if (typeof process !== 'undefined') { if (typeof process !== 'undefined') {
@ -58,7 +58,7 @@ module.exports = function(environment) {
security: ENV.billingEndpoint + "/pages/security", security: ENV.billingEndpoint + "/pages/security",
terms: ENV.billingEndpoint + "/pages/terms" terms: ENV.billingEndpoint + "/pages/terms"
}; };
ENV.githubOrgsSettingsUrl = 'https://github.com/settings/connections/4753903' ENV.githubOrgsOauthAccessSettingsUrl = 'https://github.com/settings/connections/4753903'
} }
} }