Skip to content

Commit 3a0f896

Browse files
Merge pull request #830 from ubc/#829-unlink-saml-user-ui
Enable un-linking SAML users in UI
2 parents 5587143 + 7fc2467 commit 3a0f896

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compair/static/compair-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ myApp.factory('RouteResolves',
262262
return $q.when({'objects':[]});
263263
},
264264
userThirdPartyUsers: function() {
265-
if (AuthTypesEnabled.cas) {
265+
if (AuthTypesEnabled.cas || AuthTypesEnabled.saml) {
266266
var userId = $route.current.params.userId;
267267
return UserThirdPartyUsersResource.get({'id': userId}).$promise;
268268
}

compair/static/modules/user/user-manage-partial.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ <h2 class="col-sm-12">LTI account links</h2>
137137

138138
</div>
139139

140-
<div ng-if="AuthTypesEnabled.cas">
140+
<div ng-if="AuthTypesEnabled.cas || AuthTypesEnabled.saml">
141141

142142
<div class="row">
143143
<h2 class="col-sm-12">CWL account links</h2>

0 commit comments

Comments
 (0)