d3fce41e60
no functional change here, but familiar Rails users will see view files in the locations they expect. this also slightly simplifies controller code there is one attendant change in the wiki at `rails_3/A1-SQL-Injection-Interpolation.md` that I'm happy to make after the PR is merged.
10 lines
172 B
Ruby
Executable File
10 lines
172 B
Ruby
Executable File
class TutorialsController < ApplicationController
|
|
skip_before_action :has_info
|
|
skip_before_action :authenticated
|
|
|
|
def credentials
|
|
render layout: false
|
|
end
|
|
|
|
end
|