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
{{ message }}
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
Currently if I want to create a CRUD style resource in Roxy I have to code the controller by hand. Please add a scaffolding command to do this for me.
ml create resource controller-name [format]
This should create all of the following functions and views for each with the specified format. If none is supplied as a format then no views will be created.
declare function c:index()
{
};
declare function c:new()
{
};
declare function c:create()
{
};
declare function c:show()
{
};
declare function c:edit()
{
};
declare function c:update()
{
};
declare function c:destroy()
{
};
The text was updated successfully, but these errors were encountered:
Currently if I want to create a CRUD style resource in Roxy I have to code the controller by hand. Please add a scaffolding command to do this for me.
This should create all of the following functions and views for each with the specified format. If
none
is supplied as a format then no views will be created.declare function c:index()
{
};
declare function c:new()
{
};
declare function c:create()
{
};
declare function c:show()
{
};
declare function c:edit()
{
};
declare function c:update()
{
};
declare function c:destroy()
{
};
The text was updated successfully, but these errors were encountered: