diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-16 08:51:54 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-29 07:55:01 +0100 |
commit | 051c8bf612126fa79699c8bf45a661dde127f4a0 (patch) | |
tree | 849a3b05b4ab4b59a426761d7cf1da3cc7036349 /app/assets | |
parent | a8c8f68971dd9e20dee01d9f65c64283e41fe4a3 (diff) | |
download | govuk-mini-environment-admin-051c8bf612126fa79699c8bf45a661dde127f4a0.tar govuk-mini-environment-admin-051c8bf612126fa79699c8bf45a661dde127f4a0.tar.gz |
Add backend controllers, models and views
Also annotate existing models.
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/javascripts/backends.js | 2 | ||||
-rw-r--r-- | app/assets/javascripts/backends/terraform_aws.js | 2 | ||||
-rw-r--r-- | app/assets/javascripts/backends/terraform_libvirt.js | 2 | ||||
-rw-r--r-- | app/assets/javascripts/setup.js | 2 | ||||
-rw-r--r-- | app/assets/stylesheets/backends.css | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/backends/terraform_aws.css | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/backends/terraform_libvirt.css | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/setup.css | 4 |
8 files changed, 24 insertions, 0 deletions
diff --git a/app/assets/javascripts/backends.js b/app/assets/javascripts/backends.js new file mode 100644 index 0000000..dee720f --- /dev/null +++ b/app/assets/javascripts/backends.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/javascripts/backends/terraform_aws.js b/app/assets/javascripts/backends/terraform_aws.js new file mode 100644 index 0000000..dee720f --- /dev/null +++ b/app/assets/javascripts/backends/terraform_aws.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/javascripts/backends/terraform_libvirt.js b/app/assets/javascripts/backends/terraform_libvirt.js new file mode 100644 index 0000000..dee720f --- /dev/null +++ b/app/assets/javascripts/backends/terraform_libvirt.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/javascripts/setup.js b/app/assets/javascripts/setup.js new file mode 100644 index 0000000..dee720f --- /dev/null +++ b/app/assets/javascripts/setup.js @@ -0,0 +1,2 @@ +// Place all the behaviors and hooks related to the matching controller here. +// All this logic will automatically be available in application.js. diff --git a/app/assets/stylesheets/backends.css b/app/assets/stylesheets/backends.css new file mode 100644 index 0000000..afad32d --- /dev/null +++ b/app/assets/stylesheets/backends.css @@ -0,0 +1,4 @@ +/* + Place all the styles related to the matching controller here. + They will automatically be included in application.css. +*/ diff --git a/app/assets/stylesheets/backends/terraform_aws.css b/app/assets/stylesheets/backends/terraform_aws.css new file mode 100644 index 0000000..afad32d --- /dev/null +++ b/app/assets/stylesheets/backends/terraform_aws.css @@ -0,0 +1,4 @@ +/* + Place all the styles related to the matching controller here. + They will automatically be included in application.css. +*/ diff --git a/app/assets/stylesheets/backends/terraform_libvirt.css b/app/assets/stylesheets/backends/terraform_libvirt.css new file mode 100644 index 0000000..afad32d --- /dev/null +++ b/app/assets/stylesheets/backends/terraform_libvirt.css @@ -0,0 +1,4 @@ +/* + Place all the styles related to the matching controller here. + They will automatically be included in application.css. +*/ diff --git a/app/assets/stylesheets/setup.css b/app/assets/stylesheets/setup.css new file mode 100644 index 0000000..afad32d --- /dev/null +++ b/app/assets/stylesheets/setup.css @@ -0,0 +1,4 @@ +/* + Place all the styles related to the matching controller here. + They will automatically be included in application.css. +*/ |