osrfAppRegisterMethod(
MODULENAME,
"open-ils.auth_internal.session.create",
- "oilsAutInternalCreateSession",
+ "oilsAuthInternalCreateSession",
"Adds a user to the authentication cache to indicate "
"the user is authenticated", 1, 0
);
osrfAppRegisterMethod(
MODULENAME,
"open-ils.auth_internal.user.validate",
- "oilsAutInternalValidate",
+ "oilsAuthInternalValidate",
"Determines whether a user should be allowed to login. "
"Returns SUCCESS oilsEvent when the user is valid, otherwise "
"returns a non-SUCCESS oilsEvent object", 1, 0
- "workstation" -- workstation name
*/
-int oilsAutInternalCreateSession(osrfMethodContext* ctx) {
+int oilsAuthInternalCreateSession(osrfMethodContext* ctx) {
OSRF_METHOD_VERIFY_CONTEXT(ctx);
const jsonObject* args = jsonObjectGetIndex(ctx->params, 0);
}
-int oilsAutInternalValidate(osrfMethodContext* ctx) {
+int oilsAuthInternalValidate(osrfMethodContext* ctx) {
OSRF_METHOD_VERIFY_CONTEXT(ctx);
const jsonObject* args = jsonObjectGetIndex(ctx->params, 0);