7 lines
190 B
Ruby
7 lines
190 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Snippets::BlobsController < Snippets::ApplicationController
|
|
include Snippets::BlobsActions
|
|
|
|
skip_before_action :authenticate_user!, only: [:raw]
|
|
end
|