From d8ae231da3aaab332aec6db4edd1c6553d966f9e Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Wed, 6 May 2020 00:34:05 -0700 Subject: [PATCH] Rename files firewall_rule -> rule --- apps/cf_http/lib/cf_http/{firewall_rules.ex => rules.ex} | 0 .../cf_http/{firewall_rules/firewall_rule.ex => rules/rule.ex} | 0 .../{firewall_rule_controller.ex => rule_controller.ex} | 0 .../cf_http_web/templates/{firewall_rule => rule}/edit.html.eex | 0 .../cf_http_web/templates/{firewall_rule => rule}/form.html.eex | 0 .../cf_http_web/templates/{firewall_rule => rule}/index.html.eex | 0 .../cf_http_web/templates/{firewall_rule => rule}/new.html.eex | 0 .../cf_http_web/templates/{firewall_rule => rule}/show.html.eex | 0 .../lib/cf_http_web/views/{firewall_rule_view.ex => rule_view.ex} | 0 ..._create_firewall_rules.exs => 20200228154815_create_rules.exs} | 0 .../test/cf_http/{firewall_rules_test.exs => rules_test.exs} | 0 ...firewall_rule_controller_test.exs => rule_controller_test.exs} | 0 12 files changed, 0 insertions(+), 0 deletions(-) rename apps/cf_http/lib/cf_http/{firewall_rules.ex => rules.ex} (100%) rename apps/cf_http/lib/cf_http/{firewall_rules/firewall_rule.ex => rules/rule.ex} (100%) rename apps/cf_http/lib/cf_http_web/controllers/{firewall_rule_controller.ex => rule_controller.ex} (100%) rename apps/cf_http/lib/cf_http_web/templates/{firewall_rule => rule}/edit.html.eex (100%) rename apps/cf_http/lib/cf_http_web/templates/{firewall_rule => rule}/form.html.eex (100%) rename apps/cf_http/lib/cf_http_web/templates/{firewall_rule => rule}/index.html.eex (100%) rename apps/cf_http/lib/cf_http_web/templates/{firewall_rule => rule}/new.html.eex (100%) rename apps/cf_http/lib/cf_http_web/templates/{firewall_rule => rule}/show.html.eex (100%) rename apps/cf_http/lib/cf_http_web/views/{firewall_rule_view.ex => rule_view.ex} (100%) rename apps/cf_http/priv/repo/migrations/{20200228154815_create_firewall_rules.exs => 20200228154815_create_rules.exs} (100%) rename apps/cf_http/test/cf_http/{firewall_rules_test.exs => rules_test.exs} (100%) rename apps/cf_http/test/cf_http_web/controllers/{firewall_rule_controller_test.exs => rule_controller_test.exs} (100%) diff --git a/apps/cf_http/lib/cf_http/firewall_rules.ex b/apps/cf_http/lib/cf_http/rules.ex similarity index 100% rename from apps/cf_http/lib/cf_http/firewall_rules.ex rename to apps/cf_http/lib/cf_http/rules.ex diff --git a/apps/cf_http/lib/cf_http/firewall_rules/firewall_rule.ex b/apps/cf_http/lib/cf_http/rules/rule.ex similarity index 100% rename from apps/cf_http/lib/cf_http/firewall_rules/firewall_rule.ex rename to apps/cf_http/lib/cf_http/rules/rule.ex diff --git a/apps/cf_http/lib/cf_http_web/controllers/firewall_rule_controller.ex b/apps/cf_http/lib/cf_http_web/controllers/rule_controller.ex similarity index 100% rename from apps/cf_http/lib/cf_http_web/controllers/firewall_rule_controller.ex rename to apps/cf_http/lib/cf_http_web/controllers/rule_controller.ex diff --git a/apps/cf_http/lib/cf_http_web/templates/firewall_rule/edit.html.eex b/apps/cf_http/lib/cf_http_web/templates/rule/edit.html.eex similarity index 100% rename from apps/cf_http/lib/cf_http_web/templates/firewall_rule/edit.html.eex rename to apps/cf_http/lib/cf_http_web/templates/rule/edit.html.eex diff --git a/apps/cf_http/lib/cf_http_web/templates/firewall_rule/form.html.eex b/apps/cf_http/lib/cf_http_web/templates/rule/form.html.eex similarity index 100% rename from apps/cf_http/lib/cf_http_web/templates/firewall_rule/form.html.eex rename to apps/cf_http/lib/cf_http_web/templates/rule/form.html.eex diff --git a/apps/cf_http/lib/cf_http_web/templates/firewall_rule/index.html.eex b/apps/cf_http/lib/cf_http_web/templates/rule/index.html.eex similarity index 100% rename from apps/cf_http/lib/cf_http_web/templates/firewall_rule/index.html.eex rename to apps/cf_http/lib/cf_http_web/templates/rule/index.html.eex diff --git a/apps/cf_http/lib/cf_http_web/templates/firewall_rule/new.html.eex b/apps/cf_http/lib/cf_http_web/templates/rule/new.html.eex similarity index 100% rename from apps/cf_http/lib/cf_http_web/templates/firewall_rule/new.html.eex rename to apps/cf_http/lib/cf_http_web/templates/rule/new.html.eex diff --git a/apps/cf_http/lib/cf_http_web/templates/firewall_rule/show.html.eex b/apps/cf_http/lib/cf_http_web/templates/rule/show.html.eex similarity index 100% rename from apps/cf_http/lib/cf_http_web/templates/firewall_rule/show.html.eex rename to apps/cf_http/lib/cf_http_web/templates/rule/show.html.eex diff --git a/apps/cf_http/lib/cf_http_web/views/firewall_rule_view.ex b/apps/cf_http/lib/cf_http_web/views/rule_view.ex similarity index 100% rename from apps/cf_http/lib/cf_http_web/views/firewall_rule_view.ex rename to apps/cf_http/lib/cf_http_web/views/rule_view.ex diff --git a/apps/cf_http/priv/repo/migrations/20200228154815_create_firewall_rules.exs b/apps/cf_http/priv/repo/migrations/20200228154815_create_rules.exs similarity index 100% rename from apps/cf_http/priv/repo/migrations/20200228154815_create_firewall_rules.exs rename to apps/cf_http/priv/repo/migrations/20200228154815_create_rules.exs diff --git a/apps/cf_http/test/cf_http/firewall_rules_test.exs b/apps/cf_http/test/cf_http/rules_test.exs similarity index 100% rename from apps/cf_http/test/cf_http/firewall_rules_test.exs rename to apps/cf_http/test/cf_http/rules_test.exs diff --git a/apps/cf_http/test/cf_http_web/controllers/firewall_rule_controller_test.exs b/apps/cf_http/test/cf_http_web/controllers/rule_controller_test.exs similarity index 100% rename from apps/cf_http/test/cf_http_web/controllers/firewall_rule_controller_test.exs rename to apps/cf_http/test/cf_http_web/controllers/rule_controller_test.exs