Sha256: 1a790a86e9e41bd27a36ee9123945788a65a567523a2296a477b90170ca950a6
Contents?: true
Size: 376 Bytes
Versions: 3
Compression:
Stored size: 376 Bytes
Contents
# frozen_string_literal: true module Lokalise module Resources class Task < Base ID_KEY = 'task_id' supports :update, :destroy, [:reload_data, '', :find] class << self def endpoint(project_id, task_id = nil) path_from projects: project_id, tasks: task_id end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems