1a9b3496e1
🟢 destroy.rb for new files 🟢 edit.rb for new files 🟢 index.rb for new files 🟢 new.rb for new files 🟢 update.rb for new files 🟢 destroy.html.erb for new files 🟢 edit.html.erb for new files 🟢 index.html.erb for new files 🟢 new.html.erb for new files 🟢 destroy.rb for new files 🟢 edit.rb for new files 🟢 index.rb for new files 🟢 new.rb for new files The provided Git diff contains the addition of several new files representing different actions for the admin/players section of the application. These new files include create.rb, destroy.rb, edit.rb, index.rb, new.rb, update.rb, as well as corresponding HTML erb templates and view files. Additionally, the routes.rb file has been modified to include routes for the new admin player actions. Finally, there are new spec files for testing each of the new actions.
14 lines
207 B
Ruby
14 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
module EuchreCamp
|
|
module Views
|
|
module Admin
|
|
module Players
|
|
class Index < EuchreCamp::View
|
|
expose :players
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|