8 lines
142 B
Ruby
8 lines
142 B
Ruby
# frozen_string_literal: true
|
|
class PerformanceController < ApplicationController
|
|
|
|
def index
|
|
@perf = current_user.performance
|
|
end
|
|
end
|