6e0a0a8312
1. ignoring one file because it's an intentional vuln 2. made a few small semantic changes, but verified that they're equivalent.
8 lines
189 B
Ruby
Executable File
8 lines
189 B
Ruby
Executable File
# frozen_string_literal: true
|
|
class TutorialsController < ApplicationController
|
|
skip_before_action :has_info
|
|
skip_before_action :authenticated
|
|
|
|
layout false, only: [:credentials]
|
|
end
|