* 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
9 lines
182 B
Ruby
9 lines
182 B
Ruby
module Admin
|
|
class DataUpdateScriptsController < Admin::ApplicationController
|
|
layout "admin"
|
|
|
|
def index
|
|
@data_update_scripts = DataUpdateScript.all
|
|
end
|
|
end
|
|
end
|