You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At endpoints /forms/groups/g/:group_id/? and /forms/users/u/:user_id/?there appears to be the options to have a 'view' mode for the form. However the call return $controller->formUserView($user_id); fails as they are not defined on the UserController and GroupController.
Example error: Call to undefined method UserFrosting\UserController::formUserView()
The text was updated successfully, but these errors were encountered:
The static /forms/users/u/:user_id/ route does indeed correctly render the "view" mode of the form, but I also see that the corresponding formUserView method appears to be missing. So, I wonder why it is still working...
At endpoints
/forms/groups/g/:group_id/?
and/forms/users/u/:user_id/?
there appears to be the options to have a 'view' mode for the form. However the callreturn $controller->formUserView($user_id);
fails as they are not defined on theUserController
andGroupController
.Example error:
Call to undefined method UserFrosting\UserController::formUserView()
The text was updated successfully, but these errors were encountered: