chore: show analyze page gender, ell, sped, grade info without errors

This commit is contained in:
Nelson Jovel 2024-01-29 11:27:30 -08:00
parent 13915c046e
commit 3fed5cab6a
13 changed files with 27 additions and 23 deletions

View file

@ -25,7 +25,7 @@ module Dashboard
end
def ell
::Ell.find_by_slug "ell"
Dashboard::Ell.find_by_slug "ell"
end
end
end

View file

@ -25,7 +25,7 @@ module Dashboard
end
def ell
Ell.find_by_slug "not-ell"
Dashboard::Ell.find_by_slug "not-ell"
end
end
end

View file

@ -25,7 +25,7 @@ module Dashboard
end
def ell
Ell.find_by_slug "unknown"
Dashboard::Ell.find_by_slug "unknown"
end
end
end

View file

@ -25,7 +25,7 @@ module Dashboard
end
def gender
::Gender.find_by_qualtrics_code 1
Gender.find_by_qualtrics_code 1
end
end
end

View file

@ -25,7 +25,7 @@ module Dashboard
end
def gender
::Gender.find_by_qualtrics_code 2
Gender.find_by_qualtrics_code 2
end
end
end

View file

@ -25,7 +25,7 @@ module Dashboard
end
def gender
::Gender.find_by_qualtrics_code 4
Gender.find_by_qualtrics_code 4
end
end
end

View file

@ -25,7 +25,7 @@ module Dashboard
end
def gender
::Gender.find_by_qualtrics_code 99
Gender.find_by_qualtrics_code 99
end
end
end

View file

@ -26,7 +26,7 @@ module Dashboard
end
def sped
::Sped.find_by_slug "not-special-education"
Dashboard::Sped.find_by_slug "not-special-education"
end
end
end

View file

@ -26,7 +26,7 @@ module Dashboard
end
def sped
::Sped.find_by_slug "special-education"
Dashboard::Sped.find_by_slug "special-education"
end
end
end

View file

@ -26,7 +26,7 @@ module Dashboard
end
def sped
::Sped.find_by_slug "unknown"
Dashboard::Sped.find_by_slug "unknown"
end
end
end