11 lines
275 B
Ruby
11 lines
275 B
Ruby
|
module Boards
|
||
|
class BaseService < ::BaseService
|
||
|
# Parent can either a group or a project
|
||
|
attr_accessor :parent, :current_user, :params
|
||
|
|
||
|
def initialize(parent, user, params = {})
|
||
|
@parent, @current_user, @params = parent, user, params.dup
|
||
|
end
|
||
|
end
|
||
|
end
|