lib/eligible/v1_0/file_object.rb in eligible-3.0.0.beta9 vs lib/eligible/v1_0/file_object.rb in eligible-3.0.0.beta10
- old
+ new
@@ -1,10 +1,12 @@
# frozen_string_literal: true
module Eligible
- class FileObject < RestAPIBase
- ENDPOINT_NAME = 'files'.freeze
+ module V1_0
+ class FileObject < RestAPIBase
+ ENDPOINT_NAME = 'files'.freeze
- # not an allowed operation so override the implementation to not support explicitly even though route is not defined
- def self.update; end
+ # not an allowed operation so override the implementation to not support explicitly even though route is not defined
+ def self.update; end
+ end
end
end