Sha256: fe63b84b2dbc3686634fd02081f87ca4847b303b334cc3aa395d7b5cb38b237c
Contents?: true
Size: 456 Bytes
Versions: 3
Compression:
Stored size: 456 Bytes
Contents
# frozen_string_literal: true module Lokalise module Resources class KeyComment < Base DATA_KEY = 'Comment' ID_KEY = 'comment_id' supports :destroy, [:reload_data, '', :find] class << self def endpoint(project_id, key_id, comment_id = nil) path_from projects: project_id, keys: key_id, comments: comment_id end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems