1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00

style(rubocop): Style/FrozenStringLiteralComment

هذا الالتزام موجود في:
Adam Cooke
2024-02-09 17:20:18 +00:00
الأصل ba5bfbd6a0
التزام 6ab36c09c9
217 ملفات معدلة مع 220 إضافات و3 حذوفات

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class AddressEndpointsController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
require "authie/session"
class ApplicationController < ActionController::Base

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
module WithinOrganization
extend ActiveSupport::Concern

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class CredentialsController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class DomainsController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class HelpController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class HTTPEndpointsController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class IPAddressesController < ApplicationController
before_action :admin_required

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class IPPoolRulesController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class IPPoolsController < ApplicationController
before_action :admin_required

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class MessagesController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class OrganizationIPPoolsController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class OrganizationsController < ApplicationController
before_action :admin_required, only: [:new, :create, :delete, :destroy]

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class RoutesController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class ServersController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class SessionsController < ApplicationController
layout "sub"

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class SMTPEndpointsController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class TrackDomainsController < ApplicationController
include WithinOrganization

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class UserController < ApplicationController
skip_before_action :login_required, only: [:new, :create, :join]

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class UsersController < ApplicationController
before_action :admin_required

عرض الملف

@@ -1,3 +1,4 @@
# frozen_string_literal: true
class WebhooksController < ApplicationController
include WithinOrganization