Added redemptions page. Fixed some issues. Removed some instances of console.log().
This commit is contained in:
@ -44,7 +44,6 @@ export class PolicyTableComponent implements OnInit, OnDestroy {
|
||||
for (let policy of response.data) {
|
||||
this.policies.push(new Policy(policy.id, policy.group_id, policy.path, policy.usage, policy.span, "", false, false));
|
||||
}
|
||||
console.log('getting policies', response.data);
|
||||
this.table.renderRows();
|
||||
} else if (response.request.type == "create_policy") {
|
||||
const policy = this.policies.find(p => this.groups[response.data.group_id].name == p.temp_group_name && p.path == response.data.path);
|
||||
|
Reference in New Issue
Block a user