Sha256: a2c4f4f617601b2dcb35ea316de24f7c67969480ef7f6bd27f15c65526eb98d1
Contents?: true
Size: 202 Bytes
Versions: 4
Compression:
Stored size: 202 Bytes
Contents
class ArticlesController < ApplicationController before_filter :authenticate, :except => [:index, :show] def index @articles = Article.all end def new @article = Article.new end end
Version data entries
4 entries across 4 versions & 1 rubygems