Skip to content

Commit

Permalink
add user settings table & copy on code click & fix datatable
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-convertino committed Oct 6, 2023
1 parent aef9bd3 commit 413006f
Show file tree
Hide file tree
Showing 26 changed files with 2,508 additions and 95,633 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This way, the migration from Google Authenticator to OTP Manager will be quick a
* [Official Android App](https://play.google.com/store/apps/details?id=com.convertino.otp_manager)
]]>
</description>
<version>0.1.9</version>
<version>0.2.0</version>
<licence>agpl</licence>
<author mail="[email protected]" homepage="https://www.convertino.cloud">Matteo Convertino</author>
<namespace>OtpManager</namespace>
Expand Down
9 changes: 2 additions & 7 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@
* it's instantiated in there
*/
return [
/*'resources' => [
'note' => ['url' => '/notes'],
'note_api' => ['url' => '/api/0.1/notes']
],*/
'routes' => [
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],

Expand All @@ -26,9 +22,8 @@
['name' => 'account#get', 'url' => '/accounts/{id}', 'verb' => 'GET'],
['name' => 'account#update', 'url' => '/accounts', 'verb' => 'PUT'],
['name' => 'account#delete', 'url' => '/accounts/{id}', 'verb' => 'DELETE'],
//['name' => 'info#index', 'url' => '/info', 'verb' => 'GET'],

/*['name' => 'note_api#preflighted_cors', 'url' => '/api/0.1/{path}',
'verb' => 'OPTIONS', 'requirements' => ['path' => '.+']]*/
['name' => 'setting#get', 'url' => '/settings', 'verb' => 'GET'],
['name' => 'setting#save', 'url' => '/settings', 'verb' => 'POST'],
]
];
Loading

0 comments on commit 413006f

Please sign in to comment.