mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 17:08:45 +00:00
Add role suggestions
This commit is contained in:
parent
1234cc8152
commit
770c08725f
1 changed files with 9 additions and 1 deletions
|
|
@ -585,7 +585,15 @@ $logs = $this->getParam('logs', null);
|
|||
</template>
|
||||
<tr x-data="permissionsRow" x-on:addrow.window="addPermission(role,read,create,update,xdelete)">
|
||||
<td>
|
||||
<input type="text" name="role" x-model="role" />
|
||||
<datalist id="types">
|
||||
<option value="user:">
|
||||
<option value="team:">
|
||||
<option value="users">
|
||||
<option value="guests">
|
||||
<option value="any">
|
||||
</datalist>
|
||||
|
||||
<input type="text" name="role" x-model="role" list="types" />
|
||||
</td>
|
||||
<td>
|
||||
<input type="checkbox" name="read" x-model="read" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue