1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00

custom id support on team and user

This commit is contained in:
Damodar Lohani 2021-07-21 11:56:30 +05:45
parent dd6b5b4fe0
commit 7999355b05
2 changed files with 9 additions and 0 deletions

View file

@ -259,6 +259,9 @@
<input type="hidden" name="projectId" data-ls-bind="{{router.params.project}}" />
<label for="taskId">Id</label>
<input type="text" class="full-width" id="taskId" name="taskId" required autocomplete="off" maxlength="128" />
<label for="name">Name</label>
<input type="text" class="full-width" id="name" name="name" required autocomplete="off" maxlength="128" />

View file

@ -154,6 +154,9 @@ $auth = $this->getParam('auth', []);
data-failure-param-alert-text="Failed to create user"
data-failure-param-alert-classname="error">
<label for="userId">Id</label>
<input type="text" class="full-width" id="userId" name="userId" required autocomplete="off" maxlength="128" />
<label for="user-name">Name</label>
<input type="text" class="full-width" id="user-name" name="name" required autocomplete="off" maxlength="128" />
@ -290,6 +293,9 @@ $auth = $this->getParam('auth', []);
data-failure-param-alert-text="Failed to create team"
data-failure-param-alert-classname="error">
<label for="teamId">Id</label>
<input type="text" class="full-width" id="teamId" name="teamId" required autocomplete="off" maxlength="128" />
<label for="team-name">Name</label>
<input type="text" class="full-width" id="team-name" name="name" required autocomplete="off" maxlength="128" />