8 lines
167 B
Ruby
8 lines
167 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Projects::IncidentsController < Projects::ApplicationController
|
|
before_action :authorize_read_incidents!
|
|
|
|
def index
|
|
end
|
|
end
|