Commit a47578786bdaadf29db8b66220b4d3f53a700fb7
1 parent
c92db005
the get_typed_content is also called with database as first argument. This must …
…be revised in the future with better thinking of generalization for passing database or others type through the API call
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
web/plugin/plugin.anubis
| @@ -21,12 +21,10 @@ public type WEB_Plugin: | @@ -21,12 +21,10 @@ public type WEB_Plugin: | ||
| 21 | String space_name, //space name | 21 | String space_name, //space name |
| 22 | //version | 22 | //version |
| 23 | (SQLite3DataBase db, HK_Database hk_db, VTM _vtm, (LogLevel, String) -> One logger) -> List(WEB_Controller) get_controller, | 23 | (SQLite3DataBase db, HK_Database hk_db, VTM _vtm, (LogLevel, String) -> One logger) -> List(WEB_Controller) get_controller, |
| 24 | - (WEB_Session, String type) -> Maybe(HTML_Partial_Content) get_typed_content | 24 | + (SQLite3DataBase db, WEB_Session, String type) -> Maybe(HTML_Partial_Content) get_typed_content |
| 25 | // (One dummy) -> Plugin_Left_Menu get_plugin_left_menu | 25 | // (One dummy) -> Plugin_Left_Menu get_plugin_left_menu |
| 26 | -// (One dummy) -> | ||
| 27 | // (One dummy) -> Message get_API, | 26 | // (One dummy) -> Message get_API, |
| 28 | // (Message message) -> Message call_API | 27 | // (Message message) -> Message call_API |
| 29 | -// (One dummy) -> Menu get_menu, | ||
| 30 | 28 | ||
| 31 | ) | 29 | ) |
| 32 | . | 30 | . |