blob: d7c4bbcf8f2e058badaeb838008e7f3ddc325e1a (
plain)
1
2
3
4
5
6
7
|
# frozen_string_literal: true
class Snippets::BlobsController < Snippets::ApplicationController
include Snippets::BlobsActions
skip_before_action :authenticate_user!, only: [:raw]
end
|