Skip to content
Snippets Groups Projects
Commit 265478ad authored by gfyoung's avatar gfyoung
Browse files

Enable frozen string in apps/services/**/*.rb

For directories application_settings --> labels.

Partially addresses #47424.
parent 7f0431dd
No related branches found
No related tags found
1 merge request!10495Merge Requests - Assignee
Showing
with 40 additions and 0 deletions
# frozen_string_literal: true
module ApplicationSettings
class BaseService < ::BaseService
def initialize(application_setting, user, params = {})
Loading
Loading
# frozen_string_literal: true
module ApplicationSettings
class UpdateService < ApplicationSettings::BaseService
attr_reader :params, :application_setting
Loading
Loading
# frozen_string_literal: true
module Applications
class CreateService
def initialize(current_user, params)
Loading
Loading
# frozen_string_literal: true
module Auth
class ContainerRegistryAuthenticationService < BaseService
AUDIENCE = 'container_registry'.freeze
Loading
Loading
# frozen_string_literal: true
module Badges
class BaseService
protected
Loading
Loading
# frozen_string_literal: true
module Badges
class BuildService < Badges::BaseService
# returns the created badge
Loading
Loading
# frozen_string_literal: true
module Badges
class CreateService < Badges::BaseService
# returns the created badge
Loading
Loading
# frozen_string_literal: true
module Badges
class UpdateService < Badges::BaseService
# returns the updated badge
Loading
Loading
# frozen_string_literal: true
module Boards
class BaseService < ::BaseService
# Parent can either a group or a project
Loading
Loading
# frozen_string_literal: true
module Boards
class CreateService < Boards::BaseService
def execute
Loading
Loading
# frozen_string_literal: true
module Boards
module Issues
class CreateService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module Boards
module Issues
class ListService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module Boards
module Issues
class MoveService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module Boards
class ListService < Boards::BaseService
def execute
Loading
Loading
# frozen_string_literal: true
module Boards
module Lists
class CreateService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module Boards
module Lists
class DestroyService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module Boards
module Lists
class GenerateService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module Boards
module Lists
class ListService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module Boards
module Lists
class MoveService < Boards::BaseService
Loading
Loading
# frozen_string_literal: true
module ChatNames
class AuthorizeUserService
include Gitlab::Routing
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment