Sha256: 85665537bb913ec4f73cf1410e0566d4e28a2ddd479085113973b4db3d4038db
Contents?: true
Size: 1.08 KB
Versions: 45
Compression:
Stored size: 1.08 KB
Contents
# Style ## Example Style Object ``` { "id": 1, "path": "", "logo": "", "thumbnail": "" } ``` * `id` (int64): Style ID * `path` (string): Folder path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters. * `logo`: Logo * `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
45 entries across 45 versions & 1 rubygems