Initial settings that allow to choose the default color of the notes.

This commit is contained in:
Matias De lellis
2020-06-16 22:56:34 -03:00
parent 8c6b0a2392
commit dd534e1f1b
10 changed files with 279 additions and 19 deletions

View File

@@ -5,6 +5,22 @@ return ['resources' =>
'noteApi' => ['url' => '/api/v1/notes']
],
'routes' => [
['name' => 'page#index', 'url' => '/', 'verb' => 'GET']
// Main page
[
'name' => 'page#index',
'url' => '/',
'verb' => 'GET'
],
// User Settings
[
'name' => 'settings#setUserValue',
'url' => '/setuservalue',
'verb' => 'POST'
],
[
'name' => 'settings#getUserValue',
'url' => '/getuservalue',
'verb' => 'GET'
]
]
];