-
Notifications
You must be signed in to change notification settings - Fork 28
RC > Always provide envId
regardless of permission scope
#427
Conversation
Codecov Report
@@ Coverage Diff @@
## rc-2.0.0 #427 +/- ##
===========================================
+ Coverage 99.3% 99.3% +<.01%
===========================================
Files 73 73
Lines 1876 1878 +2
Branches 288 289 +1
===========================================
+ Hits 1863 1865 +2
Misses 13 13
Continue to review full report at Codecov.
|
runtime/auth-http.ts
Outdated
tokenArgs.permissionScope = this.permissionScope; | ||
} | ||
|
||
// Always provide the environment ID. | ||
tokenArgs.envId = this.getEnvId(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we still want to only add this if envId
exists.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Blackbaud-BobbyEarl Would it be enough to wrap this assignment in an if
statement? Trying to understand where I'm getting this wrong...
const envId = this.getEnvId();
if (envId) {
tokenArgs.envId = envId;
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep. Wrapping in an if is what we need.
* RC > Removed all references to SKY UX, changed dependency structure (blackbaud#419) * RC > Updated TSLint rules (blackbaud#422) * Removed legacy omnibar (blackbaud#420) * RC > Config params as an object; always decode URL params (blackbaud#421) * RC > Always provide `envId` regardless of permission scope (blackbaud#427) * RC > Allow SPAs to bundle stylesheets that live outside of `src/app` (blackbaud#428) * RC > Adjusted dev dependencies (blackbaud#429) * RC > Fixed ts-helpers for build (blackbaud#434) * RC > Update from master (blackbaud#425) * RC > Removed global RxJS imports (blackbaud#438) * RC > Replaced error component with iframe (blackbaud#436) * RC > Removed SKY CSS import (blackbaud#443) * RC > Instrument different directory for libraries (blackbaud#448) * RC > Do not ignore Protractor Error 199 (blackbaud#435) * RC > Merged master (blackbaud#444) * RC > Merge master (blackbaud#454) * RC > Upgrade Angular, RxJS, TypeScript (blackbaud#495) * RC > Moved auth-client to peer dependency; fixed `skyux watch` (blackbaud#503) * Disabled webpack host check (blackbaud#505) * Replaced JSHint with ESLint. (blackbaud#506) * RC > Merge master (blackbaud#508) * RC > Changed name of NPM package (blackbaud#501)
See: https://github.com/blackbaud/skyux2/projects/9#card-10723204