From b5b4395e4a7c63e31579475888fa892dcdaeecff Mon Sep 17 00:00:00 2001 From: Alexander Strizhakov Date: Tue, 23 Jun 2020 19:08:19 +0300 Subject: [PATCH] oauth consistency --- lib/pleroma/plugs/{oauth_plug.ex => o_auth_plug.ex} | 0 lib/pleroma/plugs/{oauth_scopes_plug.ex => o_auth_scopes_plug.ex} | 0 .../{oauth_app_controller.ex => o_auth_app_controller.ex} | 0 .../admin/{oauth_app_operation.ex => o_auth_app_operation.ex} | 0 lib/pleroma/web/{oauth.ex => o_auth.ex} | 0 lib/pleroma/web/{oauth => o_auth}/app.ex | 0 lib/pleroma/web/{oauth => o_auth}/authorization.ex | 0 lib/pleroma/web/{oauth => o_auth}/fallback_controller.ex | 0 lib/pleroma/web/{oauth => o_auth}/mfa_controller.ex | 0 lib/pleroma/web/{oauth => o_auth}/mfa_view.ex | 0 .../{oauth/oauth_controller.ex => o_auth/o_auth_controller.ex} | 0 lib/pleroma/web/{oauth/oauth_view.ex => o_auth/o_auth_view.ex} | 0 lib/pleroma/web/{oauth => o_auth}/scopes.ex | 0 lib/pleroma/web/{oauth => o_auth}/token.ex | 0 lib/pleroma/web/{oauth => o_auth}/token/query.ex | 0 lib/pleroma/web/{oauth => o_auth}/token/strategy/refresh_token.ex | 0 lib/pleroma/web/{oauth => o_auth}/token/strategy/revoke.ex | 0 lib/pleroma/web/{oauth => o_auth}/token/utils.ex | 0 18 files changed, 0 insertions(+), 0 deletions(-) rename lib/pleroma/plugs/{oauth_plug.ex => o_auth_plug.ex} (100%) rename lib/pleroma/plugs/{oauth_scopes_plug.ex => o_auth_scopes_plug.ex} (100%) rename lib/pleroma/web/admin_api/controllers/{oauth_app_controller.ex => o_auth_app_controller.ex} (100%) rename lib/pleroma/web/api_spec/operations/admin/{oauth_app_operation.ex => o_auth_app_operation.ex} (100%) rename lib/pleroma/web/{oauth.ex => o_auth.ex} (100%) rename lib/pleroma/web/{oauth => o_auth}/app.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/authorization.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/fallback_controller.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/mfa_controller.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/mfa_view.ex (100%) rename lib/pleroma/web/{oauth/oauth_controller.ex => o_auth/o_auth_controller.ex} (100%) rename lib/pleroma/web/{oauth/oauth_view.ex => o_auth/o_auth_view.ex} (100%) rename lib/pleroma/web/{oauth => o_auth}/scopes.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/token.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/token/query.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/token/strategy/refresh_token.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/token/strategy/revoke.ex (100%) rename lib/pleroma/web/{oauth => o_auth}/token/utils.ex (100%) diff --git a/lib/pleroma/plugs/oauth_plug.ex b/lib/pleroma/plugs/o_auth_plug.ex similarity index 100% rename from lib/pleroma/plugs/oauth_plug.ex rename to lib/pleroma/plugs/o_auth_plug.ex diff --git a/lib/pleroma/plugs/oauth_scopes_plug.ex b/lib/pleroma/plugs/o_auth_scopes_plug.ex similarity index 100% rename from lib/pleroma/plugs/oauth_scopes_plug.ex rename to lib/pleroma/plugs/o_auth_scopes_plug.ex diff --git a/lib/pleroma/web/admin_api/controllers/oauth_app_controller.ex b/lib/pleroma/web/admin_api/controllers/o_auth_app_controller.ex similarity index 100% rename from lib/pleroma/web/admin_api/controllers/oauth_app_controller.ex rename to lib/pleroma/web/admin_api/controllers/o_auth_app_controller.ex diff --git a/lib/pleroma/web/api_spec/operations/admin/oauth_app_operation.ex b/lib/pleroma/web/api_spec/operations/admin/o_auth_app_operation.ex similarity index 100% rename from lib/pleroma/web/api_spec/operations/admin/oauth_app_operation.ex rename to lib/pleroma/web/api_spec/operations/admin/o_auth_app_operation.ex diff --git a/lib/pleroma/web/oauth.ex b/lib/pleroma/web/o_auth.ex similarity index 100% rename from lib/pleroma/web/oauth.ex rename to lib/pleroma/web/o_auth.ex diff --git a/lib/pleroma/web/oauth/app.ex b/lib/pleroma/web/o_auth/app.ex similarity index 100% rename from lib/pleroma/web/oauth/app.ex rename to lib/pleroma/web/o_auth/app.ex diff --git a/lib/pleroma/web/oauth/authorization.ex b/lib/pleroma/web/o_auth/authorization.ex similarity index 100% rename from lib/pleroma/web/oauth/authorization.ex rename to lib/pleroma/web/o_auth/authorization.ex diff --git a/lib/pleroma/web/oauth/fallback_controller.ex b/lib/pleroma/web/o_auth/fallback_controller.ex similarity index 100% rename from lib/pleroma/web/oauth/fallback_controller.ex rename to lib/pleroma/web/o_auth/fallback_controller.ex diff --git a/lib/pleroma/web/oauth/mfa_controller.ex b/lib/pleroma/web/o_auth/mfa_controller.ex similarity index 100% rename from lib/pleroma/web/oauth/mfa_controller.ex rename to lib/pleroma/web/o_auth/mfa_controller.ex diff --git a/lib/pleroma/web/oauth/mfa_view.ex b/lib/pleroma/web/o_auth/mfa_view.ex similarity index 100% rename from lib/pleroma/web/oauth/mfa_view.ex rename to lib/pleroma/web/o_auth/mfa_view.ex diff --git a/lib/pleroma/web/oauth/oauth_controller.ex b/lib/pleroma/web/o_auth/o_auth_controller.ex similarity index 100% rename from lib/pleroma/web/oauth/oauth_controller.ex rename to lib/pleroma/web/o_auth/o_auth_controller.ex diff --git a/lib/pleroma/web/oauth/oauth_view.ex b/lib/pleroma/web/o_auth/o_auth_view.ex similarity index 100% rename from lib/pleroma/web/oauth/oauth_view.ex rename to lib/pleroma/web/o_auth/o_auth_view.ex diff --git a/lib/pleroma/web/oauth/scopes.ex b/lib/pleroma/web/o_auth/scopes.ex similarity index 100% rename from lib/pleroma/web/oauth/scopes.ex rename to lib/pleroma/web/o_auth/scopes.ex diff --git a/lib/pleroma/web/oauth/token.ex b/lib/pleroma/web/o_auth/token.ex similarity index 100% rename from lib/pleroma/web/oauth/token.ex rename to lib/pleroma/web/o_auth/token.ex diff --git a/lib/pleroma/web/oauth/token/query.ex b/lib/pleroma/web/o_auth/token/query.ex similarity index 100% rename from lib/pleroma/web/oauth/token/query.ex rename to lib/pleroma/web/o_auth/token/query.ex diff --git a/lib/pleroma/web/oauth/token/strategy/refresh_token.ex b/lib/pleroma/web/o_auth/token/strategy/refresh_token.ex similarity index 100% rename from lib/pleroma/web/oauth/token/strategy/refresh_token.ex rename to lib/pleroma/web/o_auth/token/strategy/refresh_token.ex diff --git a/lib/pleroma/web/oauth/token/strategy/revoke.ex b/lib/pleroma/web/o_auth/token/strategy/revoke.ex similarity index 100% rename from lib/pleroma/web/oauth/token/strategy/revoke.ex rename to lib/pleroma/web/o_auth/token/strategy/revoke.ex diff --git a/lib/pleroma/web/oauth/token/utils.ex b/lib/pleroma/web/o_auth/token/utils.ex similarity index 100% rename from lib/pleroma/web/oauth/token/utils.ex rename to lib/pleroma/web/o_auth/token/utils.ex