chore: unflake access-control, fix incorrect poll & toPass timeouts

This commit is contained in:
Alessio Gravili
2024-03-22 16:42:41 -04:00
parent 4c109a467f
commit 2c68f8fba1
5 changed files with 21 additions and 21 deletions

View File

@@ -10,7 +10,7 @@ export class AdminUrlUtil {
constructor(serverURL: string, slug: string) {
this.account = `${serverURL}/admin/account`
this.admin = `${serverURL}/admin`
this.list = `${this.admin}/collections/${slug}?limit=10`
this.list = `${this.admin}/collections/${slug}`
this.create = `${this.list}/create`
}