Blame view

lib/syspro/api_operations/setup.rb 937 Bytes
d9a9cb5d   chadzink   Add portoi and co...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  # frozen_string_literal: true
  
  module Syspro
    module ApiOperations
      module Setup
        module ClassMethods
          def add(params)
            request(:get, '/Setup/Add', params)
          end
  
          def update(params)
            request(:get, '/Setup/Update', params)
          end
  
          def delete(params)
            request(:get, '/Setup/Delete', params)
          end
  
          private
  
          def warn_on_opts_in_params(params)
            Util::OPTS_USER_SPECIFIED.each do |opt|
              if params.key?(opt)
                warn("WARNING: #{opt} should be in opts instead of params.")
              end
            end
          end
        end # ClassMethods
  
        def self.included(base)
          base.extend(ClassMethods)
        end
  
        protected
  
b1c0def6   Samuel J Clopton   rubocop violation...
36
        def request(method, url, params = {}, opts = {})
d9a9cb5d   chadzink   Add portoi and co...
37
38
39
40
41
42
          opts = @opts.merge(Util.normalize_opts(opts))
          Request.request(method, url, params, opts)
        end
      end
    end
  end