lib/generators/ouvrages/controller/templates/controller.rb in ouvrages_scaffold-0.1.1 vs lib/generators/ouvrages/controller/templates/controller.rb in ouvrages_scaffold-0.1.2
- old
+ new
@@ -4,76 +4,63 @@
before_filter do
add_crumb t("navigation.<%= plural_table_name %>"), <%= plural_table_name %>_path
end
- # GET <%= route_url %>
- # GET <%= route_url %>.json
def index
respond_to do |format|
- format.html # index.html.erb
- format.json { render json: <%= "@#{plural_table_name}" %> }
+ format.html
+ # format.json { render json: <%= "@#{plural_table_name}" %> }
end
end
- # GET <%= route_url %>/1
- # GET <%= route_url %>/1.json
def show
respond_to do |format|
- format.html # show.html.erb
- format.json { render json: <%= "@#{singular_table_name}" %> }
+ format.html
+ # format.json { render json: <%= "@#{singular_table_name}" %> }
end
end
- # GET <%= route_url %>/new
- # GET <%= route_url %>/new.json
def new
respond_to do |format|
- format.html # new.html.erb
- format.json { render json: <%= "@#{singular_table_name}" %> }
+ format.html
+ # format.json { render json: <%= "@#{singular_table_name}" %> }
end
end
- # GET <%= route_url %>/1/edit
def edit
end
- # POST <%= route_url %>
- # POST <%= route_url %>.json
def create
respond_to do |format|
if @<%= orm_instance.save %>
format.html { redirect_to @<%= singular_table_name %>, flash: {success: t("<%= plural_table_name %>.created")} }
- format.json { render json: <%= "@#{singular_table_name}" %>, status: :created, location: <%= "@#{singular_table_name}" %> }
+ # format.json { render json: <%= "@#{singular_table_name}" %>, status: :created, location: <%= "@#{singular_table_name}" %> }
else
format.html { render action: "new" }
- format.json { render json: <%= "@#{orm_instance.errors}" %>, status: :unprocessable_entity }
+ # format.json { render json: <%= "@#{orm_instance.errors}" %>, status: :unprocessable_entity }
end
end
end
- # PATCH/PUT <%= route_url %>/1
- # PATCH/PUT <%= route_url %>/1.json
def update
respond_to do |format|
if @<%= orm_instance.update_attributes("params[:#{singular_table_name}]") %>
format.html { redirect_to @<%= singular_table_name %>, flash: {success: t("<%= plural_table_name %>.updated")} }
- format.json { head :no_content }
+ # format.json { head :no_content }
else
format.html { render action: "edit" }
- format.json { render json: <%= "@#{orm_instance.errors}" %>, status: :unprocessable_entity }
+ # format.json { render json: <%= "@#{orm_instance.errors}" %>, status: :unprocessable_entity }
end
end
end
- # DELETE <%= route_url %>/1
- # DELETE <%= route_url %>/1.json
def destroy
@<%= orm_instance.destroy %>
respond_to do |format|
format.html { redirect_to <%= index_helper %>_url, flash: {success: t("<%= plural_table_name %>.removed")} }
- format.json { head :no_content }
+ # format.json { head :no_content }
end
end
end
-<% end -%>
\ No newline at end of file
+<% end -%>