Ben/gardening (#68)

* Remove more unnecessary auth token skips
This commit is contained in:
Ben Halpern 2018-03-09 21:50:19 -08:00 committed by GitHub
parent 9381a17cf2
commit b8a51b3947
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View file

@ -1,6 +1,5 @@
class ImageUploadsController < ApplicationController
before_action :authenticate_user!
skip_before_action :verify_authenticity_token
def create
uploader = ArticleImageUploader.new

View file

@ -1,6 +1,5 @@
class Internal::WelcomeController < Internal::ApplicationController
layout "internal"
skip_before_action :verify_authenticity_token
def index
@daily_threads = Article.where("title LIKE 'Welcome Thread - %'")