Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
move cli_list_user action to ajxp_conf
  • Loading branch information
c12simple committed Nov 20, 2014
1 parent 1b8e2e2 commit 55b0a09
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
5 changes: 5 additions & 0 deletions core/src/plugins/access.ajxp_conf/ajxp_confActions.xml
Expand Up @@ -581,6 +581,11 @@
]]></clientCallback>
</processing>
</action>
<action name="cli_update_user_list">
<processing>
<serverCallback methodName="switchAction"></serverCallback>
</processing>
</action>
</actions>
<client_configs>
<component_config className="InfoPanel">
Expand Down
Expand Up @@ -1673,8 +1673,12 @@ public function switchAction($action, $httpVars, $fileVars)

break;

case "cli_update_user_list":
AuthService::listUsers();
break;

default:
break;
break;
}

return;
Expand Down
4 changes: 0 additions & 4 deletions core/src/plugins/core.conf/class.AbstractConfDriver.php
Expand Up @@ -1244,10 +1244,6 @@ public function switchAction($action, $httpVars, $fileVars)
}

break;

case "cli_update_user_list":
AuthService::listUsers();
break;
default;
break;
}
Expand Down
5 changes: 0 additions & 5 deletions core/src/plugins/core.conf/standard_conf_actions.xml
Expand Up @@ -598,11 +598,6 @@
]]></clientCallback>
</processing>
</action>
<action name="cli_update_user_list">
<processing>
<serverCallback methodName="switchAction"></serverCallback>
</processing>
</action>
</actions>
<client_configs>
<component_config className="AjxpTabulator::userdashboard_main_tab">
Expand Down

0 comments on commit 55b0a09

Please sign in to comment.