docbrown/app/controllers/admin/data_update_scripts_controller.rb
Ridhwana 100990f7c6
Basic MVP version of data update script page (#12167)
* feat: add a basic table template with the basic info for the data scripts

* feat: add nav element to sidebar

* feat: add twemoji

* feat: success and failed icon

* feat: don't wrap the status title

* feat: make data update scripts accessible only be tech_admin

* chore: add the file name to the table

* test: write tests for the data_update_script_controller

* chore: remove icons and add status
2021-01-07 23:12:51 +02:00

9 lines
182 B
Ruby

module Admin
class DataUpdateScriptsController < Admin::ApplicationController
layout "admin"
def index
@data_update_scripts = DataUpdateScript.all
end
end
end