change yarn reset to yarn dev_reset in database up

This commit is contained in:
Moriz Wahl 2021-11-26 20:08:44 +01:00
parent 0f22a2fe1c
commit 556debe984
2 changed files with 2 additions and 2 deletions

View File

@ -657,4 +657,4 @@ jobs:
- name: database | up
run: docker-compose -f docker-compose.yml run -T database yarn up
- name: database | reset
run: docker-compose -f docker-compose.yml run -T database yarn reset
run: docker-compose -f docker-compose.yml run -T database yarn dev_reset

View File

@ -16,7 +16,7 @@ class ServerUsersController extends AppController
{
parent::initialize();
// uncomment in devmode to add new community server admin user, but don't!!! commit it
//$this->Auth->allow(['add', 'edit']);
$this->Auth->allow(['add', 'edit']);
$this->Auth->deny('index');
}