Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Admin settings section #3328

Merged
merged 7 commits into from
Feb 27, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused place name setting
  • Loading branch information
decabeza committed Feb 19, 2019
commit 2e135ca3f19ff0c271c60a1a21ebda3379ce1f3f
2 changes: 0 additions & 2 deletions config/locales/en/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ en:
url_description: "Main URL of your website"
org_name: "Organization"
org_name_description: "Name of your organization"
place_name: "Place"
place_name_description: "Name of your city"
related_content_score_threshold: "Related content score threshold"
related_content_score_threshold_description: "Hides content that users mark as unrelated"
hot_score_period_in_days: "Period (days) used by the filter 'most active'"
Expand Down
2 changes: 0 additions & 2 deletions config/locales/es/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ es:
url_description: "URL principal de tu web"
org_name: "Nombre de la organización"
org_name_description: "Nombre de tu organización"
place_name: "Nombre del lugar"
place_name_description: "Nombre de tu ciudad"
related_content_score_threshold: "Umbral de puntuación de contenido relacionado"
related_content_score_threshold_description: "Oculta el contenido que los usuarios marquen como no relacionado"
hot_score_period_in_days: "Periodo (días) usado para el filtro 'Más Activos'"
Expand Down
1 change: 0 additions & 1 deletion db/dev_seeds/settings.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
Setting.create(key: 'instagram_handle', value: 'CONSUL')
Setting.create(key: 'url', value: 'http:https://localhost:3000')
Setting.create(key: 'org_name', value: 'CONSUL')
Setting.create(key: 'place_name', value: 'City')

Setting.create(key: 'feature.debates', value: "true")
Setting.create(key: 'feature.proposals', value: "true")
Expand Down
3 changes: 0 additions & 3 deletions db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@
# CONSUL installation's organization name
Setting["org_name"] = "CONSUL"

# CONSUL installation place name (City, Country...)
Setting["place_name"] = "CONSUL-land"

# Meta tags for SEO
Setting["meta_title"] = nil
Setting["meta_description"] = nil
Expand Down