A lot :)
This commit is contained in:
parent
aad67af0d1
commit
63fc206c27
153 changed files with 2043 additions and 646 deletions
30
db/seeds.rb
30
db/seeds.rb
|
|
@ -1,9 +1,21 @@
|
|||
# This file should ensure the existence of records required to run the application in every environment (production,
|
||||
# development, test). The code here should be idempotent so that it can be executed at any point in every environment.
|
||||
# The data can then be loaded with the bin/rails db:seed command (or created alongside the database with db:setup).
|
||||
#
|
||||
# Example:
|
||||
#
|
||||
# ["Action", "Comedy", "Drama", "Horror"].each do |genre_name|
|
||||
# MovieGenre.find_or_create_by!(name: genre_name)
|
||||
# end
|
||||
# Seed Standards
|
||||
Standard.create!(name_de: "WCAG",
|
||||
name_en: "WCAG",
|
||||
version: "2.1",
|
||||
url_de: "https://outline-rocks.github.io/wcag/translations/WCAG21-de/",
|
||||
url_en: "https://www.w3.org/TR/WCAG21/")
|
||||
Standard.create!(name_de: "eCH-0059",
|
||||
name_en: "eCH-0059",
|
||||
version: "3.0",
|
||||
url_de: "https://www.ech.ch/de/ech/ech-0059/3.0",
|
||||
url_en: "https://www.ech.ch/de/ech/ech-0059/3.0")
|
||||
Standard.create!(name_de: "EN 301 549",
|
||||
name_en: "EN 301 549",
|
||||
version: "V3",
|
||||
url_de: "https://www.etsi.org/deliver/etsi_en/301500_301599/301549/03.02.01_60/en_301549v030201p.pdf",
|
||||
url_en: "https://www.etsi.org/deliver/etsi_en/301500_301599/301549/03.02.01_60/en_301549v030201p.pdf")
|
||||
|
||||
Principle.create!(name_de: "Wahrnehmbar", name_en: "Perceivable")
|
||||
Principle.create!(name_de: "Bedienbar", name_en: "Operable")
|
||||
Principle.create!(name_de: "Verständlich", name_en: "Understandable")
|
||||
Principle.create!(name_de: "Robust", name_en: "Robust")
|
||||
Loading…
Add table
Add a link
Reference in a new issue