Sign in

EDIT / kanjai · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • kanjai
  • lib
  • appdocks
  • api
  • container
  • user_tables.rb
  • add api contentdock
    30789788
    Andrey Karpikov authored
    2022-02-23 23:26:02 +0100  
    Browse Files »
user_tables.rb 419 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# frozen_string_literal: true

require './appdocks/api/request'
require './appdocks/api/base'

module Appdocks
  module Api
    module Container
      class UserTables < Appdocks::Api::Base
        def call
          @response = Appdocks::Api::Request.new.send_request('getDataContainerTableListSDK', nil, {scope: 'user'})
        end

        def data
          response[:data]
        end
      end
    end
  end
end