Skip to content

Commit 03d44a0

Browse files
authored
Merge pull request #130 from ryanhertz/system_info_search
added SystemInfoSearch model
2 parents c1cafaf + 5de0199 commit 03d44a0

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
v1.4.13
2+
- added SystemInfoSearch model
3+
14
v1.4.12
25
- updated 'delete_photos' in SparkApi::Models::Listing to return the response from the API instead of a boolean value.
6+
37
v1.4.11
48
- add 'delete_photos' to SparkApi::Models::Listing to enable deleting a batch of photos.
9+
510
v1.4.10
611
- add `id` method to SparkApi::Models::Base as a more familiar alias of `Id`
712
- add SharedLink and EmailLink models, extracted from FBS internal code

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.12
1+
1.4.13

lib/spark_api/models.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
require 'spark_api/models/sort'
4141
require 'spark_api/models/standard_fields'
4242
require 'spark_api/models/system_info'
43+
require 'spark_api/models/system_info_search'
4344
require 'spark_api/models/tour_of_home'
4445
require 'spark_api/models/video'
4546
require 'spark_api/models/virtual_tour'
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module SparkApi
2+
module Models
3+
class SystemInfoSearch < Base
4+
5+
self.element_name="system/search"
6+
7+
end
8+
end
9+
end

0 commit comments

Comments
 (0)