mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
initial commit
This commit is contained in:
commit
c21c4fa184
68 changed files with 1092 additions and 0 deletions
1
app/assets/config/dashboard_manifest.js
Normal file
1
app/assets/config/dashboard_manifest.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
//= link_directory ../stylesheets/dashboard .css
|
||||
0
app/assets/images/dashboard/.keep
Normal file
0
app/assets/images/dashboard/.keep
Normal file
15
app/assets/stylesheets/dashboard/application.css
Normal file
15
app/assets/stylesheets/dashboard/application.css
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
/*
|
||||
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
||||
* listed below.
|
||||
*
|
||||
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
||||
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
||||
*
|
||||
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
||||
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
|
||||
* files in this directory. Styles in this file should be added after the last require_* statement.
|
||||
* It is generally better to create a new file per style scope.
|
||||
*
|
||||
*= require_tree .
|
||||
*= require_self
|
||||
*/
|
||||
0
app/controllers/concerns/.keep
Normal file
0
app/controllers/concerns/.keep
Normal file
4
app/controllers/dashboard/application_controller.rb
Normal file
4
app/controllers/dashboard/application_controller.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
module Dashboard
|
||||
class ApplicationController < ActionController::Base
|
||||
end
|
||||
end
|
||||
4
app/helpers/dashboard/application_helper.rb
Normal file
4
app/helpers/dashboard/application_helper.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
module Dashboard
|
||||
module ApplicationHelper
|
||||
end
|
||||
end
|
||||
4
app/jobs/dashboard/application_job.rb
Normal file
4
app/jobs/dashboard/application_job.rb
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
module Dashboard
|
||||
class ApplicationJob < ActiveJob::Base
|
||||
end
|
||||
end
|
||||
6
app/mailers/dashboard/application_mailer.rb
Normal file
6
app/mailers/dashboard/application_mailer.rb
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
module Dashboard
|
||||
class ApplicationMailer < ActionMailer::Base
|
||||
default from: "from@example.com"
|
||||
layout "mailer"
|
||||
end
|
||||
end
|
||||
0
app/models/concerns/.keep
Normal file
0
app/models/concerns/.keep
Normal file
5
app/models/dashboard/application_record.rb
Normal file
5
app/models/dashboard/application_record.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
module Dashboard
|
||||
class ApplicationRecord < ActiveRecord::Base
|
||||
self.abstract_class = true
|
||||
end
|
||||
end
|
||||
15
app/views/layouts/dashboard/application.html.erb
Normal file
15
app/views/layouts/dashboard/application.html.erb
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Dashboard</title>
|
||||
<%= csrf_meta_tags %>
|
||||
<%= csp_meta_tag %>
|
||||
|
||||
<%= stylesheet_link_tag "dashboard/application", media: "all" %>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<%= yield %>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue