Added redemptions page. Fixed some issues. Removed some instances of console.log().

This commit is contained in:
Tom
2025-01-13 23:37:31 +00:00
parent 7a7fb832a0
commit 04a50f6db0
39 changed files with 2342 additions and 1564 deletions

View File

@ -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);