Sha256: c7aa201cdf1ebfd7dad63d8883137a1bd4fbc070bd06a7ca67c818fa7c144850
Contents?: true
Size: 1.05 KB
Versions: 9
Compression:
Stored size: 1.05 KB
Contents
# Style ## Example Style Object ``` { "logo": "", "path": "", "thumbnail": "" } ``` * `logo`: Logo * `path` (string): Folder path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters. * `thumbnail`: Logo thumbnail * `file` (file): Logo for custom branding. --- ## Show Style ``` Files::Style.list(path) ``` ### Parameters * `path` (string): Required - Style path. --- ## Update Style ``` Files::Style.update(path, file: "file" ) ``` ### Parameters * `path` (string): Required - Style path. * `file` (file): Required - Logo for custom branding. --- ## Delete Style ``` Files::Style.delete(path) ``` ### Parameters * `path` (string): Required - Style path. --- ## Update Style ``` style = Files::Style.find(1) style.update( file: "file" ) ``` ### Parameters * `path` (string): Required - Style path. * `file` (file): Required - Logo for custom branding. --- ## Delete Style ``` style = Files::Style.find(1) style.delete ``` ### Parameters * `path` (string): Required - Style path.
Version data entries
9 entries across 9 versions & 1 rubygems