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