mirror of https://github.com/go-gitea/gitea.git
Fix `delete_repo` in template (#22606)
Currently the value doesn't match the model, so selecting it results in
a 500.
e8ac6a9aea/models/auth/token_scope.go (L42)
Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
parent
4f8c0eba9a
commit
642db3c8f7
|
@ -165,7 +165,7 @@
|
|||
</div>
|
||||
<div class="field">
|
||||
<div class="ui checkbox">
|
||||
<input class="enable-system" type="checkbox" name="scope" value="delete:repo">
|
||||
<input class="enable-system" type="checkbox" name="scope" value="delete_repo">
|
||||
<label>delete_repo</label>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue