xyixyi/harmony-plus

View on GitHub
app/controllers/stories_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class StoriesController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  layout 'application'
  protect_from_forgery with: :exception
  
  def show

  end

  def index

  end

  def new
    
  end

  def create

  end

  def edit

  end

  def update

  end

  def destroy

  end

end