commit
9d4cc19e62
4 changed files with 3 additions and 5 deletions
|
@ -468,7 +468,7 @@ module.factory('ApplicationClaims', function($resource) {
|
||||||
});
|
});
|
||||||
|
|
||||||
module.factory('ApplicationPushRevocation', function($resource) {
|
module.factory('ApplicationPushRevocation', function($resource) {
|
||||||
return $resource('//auth/rest/admin/realms/:realm/applications/:application/push-revocation', {
|
return $resource('/auth/rest/admin/realms/:realm/applications/:application/push-revocation', {
|
||||||
realm : '@realm',
|
realm : '@realm',
|
||||||
application : "@application"
|
application : "@application"
|
||||||
});
|
});
|
||||||
|
|
|
@ -28,8 +28,6 @@
|
||||||
</button>
|
</button>
|
||||||
<button type="submit" data-ng-click="setNotBeforeNow()" class="btn btn-primary btn-lg">Set To Now
|
<button type="submit" data-ng-click="setNotBeforeNow()" class="btn btn-primary btn-lg">Set To Now
|
||||||
</button>
|
</button>
|
||||||
<button type="submit" data-ng-click="pushRevocation()" class="btn btn-primary btn-lg">Push
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -22,7 +22,7 @@ public class CustomerService {
|
||||||
rtn.add("Bill Burke");
|
rtn.add("Bill Burke");
|
||||||
rtn.add("Stian Thorgersen");
|
rtn.add("Stian Thorgersen");
|
||||||
rtn.add("Stan Silvert");
|
rtn.add("Stan Silvert");
|
||||||
rtn.add("Gabriel Cordoso");
|
rtn.add("Gabriel Cardoso");
|
||||||
rtn.add("Viliam Rockai");
|
rtn.add("Viliam Rockai");
|
||||||
rtn.add("Marek Posolda");
|
rtn.add("Marek Posolda");
|
||||||
rtn.add("Boleslaw Dawidowicz");
|
rtn.add("Boleslaw Dawidowicz");
|
||||||
|
|
|
@ -82,7 +82,7 @@ public class ResourceAdminManager {
|
||||||
|
|
||||||
|
|
||||||
protected boolean pushRevocationPolicy(RealmModel realm, ApplicationModel resource, int notBefore, ResteasyClient client) {
|
protected boolean pushRevocationPolicy(RealmModel realm, ApplicationModel resource, int notBefore, ResteasyClient client) {
|
||||||
if (realm.getNotBefore() <= 0) return false;
|
if (notBefore <= 0) return false;
|
||||||
String managementUrl = resource.getManagementUrl();
|
String managementUrl = resource.getManagementUrl();
|
||||||
if (managementUrl != null) {
|
if (managementUrl != null) {
|
||||||
PushNotBeforeAction adminAction = new PushNotBeforeAction(TokenIdGenerator.generateId(), (int)(System.currentTimeMillis() / 1000) + 30, resource.getName(), notBefore);
|
PushNotBeforeAction adminAction = new PushNotBeforeAction(TokenIdGenerator.generateId(), (int)(System.currentTimeMillis() / 1000) + 30, resource.getName(), notBefore);
|
||||||
|
|
Loading…
Reference in a new issue