Sha256: 2db0f6b21bec71f38d37c6af55053307ba33eba1611662402afbabe12f170789
Contents?: true
Size: 1.55 KB
Versions: 7
Compression:
Stored size: 1.55 KB
Contents
require_dependency "ishapi/application_controller" module Ishapi class ApiController < ApplicationController def home puts! params, 'params' render :json => { :status => :ok, :message => 'Ishapi::ApiController.home', :n_reports => Report.count, :n_cities => City.count } authorize! :welcome_home, Ishapi end =begin before_action :set_article, only: [:show, :edit, :update, :destroy] # GET /articles def index @articles = Article.all end # GET /articles/1 def show end # GET /articles/new def new @article = Article.new end # GET /articles/1/edit def edit end # POST /articles def create @article = Article.new(article_params) if @article.save redirect_to @article, notice: 'Article was successfully created.' else render :new end end # PATCH/PUT /articles/1 def update if @article.update(article_params) redirect_to @article, notice: 'Article was successfully updated.' else render :edit end end # DELETE /articles/1 def destroy @article.destroy redirect_to articles_url, notice: 'Article was successfully destroyed.' end private # Use callbacks to share common setup or constraints between actions. def set_article @article = Article.find(params[:id]) end # Only allow a trusted parameter "white list" through. def article_params params.require(:article).permit(:title, :text) end =end end end
Version data entries
7 entries across 7 versions & 1 rubygems