Skip to content

Commit ccd30d3

Browse files
[Bot] push changes from Files.com
1 parent 267199d commit ccd30d3

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.25
1+
1.0.26

lib/models/App.js

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ var App = function App() {
4848
(0, _defineProperty2.default)(this, "getDocumentationLinks", function () {
4949
return _this.attributes.documentation_links;
5050
});
51+
(0, _defineProperty2.default)(this, "getIconUrl", function () {
52+
return _this.attributes.icon_url;
53+
});
5154
(0, _defineProperty2.default)(this, "getLogoUrl", function () {
5255
return _this.attributes.logo_url;
5356
});

src/models/App.js

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ class App {
3232
// string # Collection of named links to documentation
3333
getDocumentationLinks = () => this.attributes.documentation_links
3434

35+
// string # App icon
36+
getIconUrl = () => this.attributes.icon_url
37+
3538
// string # Full size logo for the App
3639
getLogoUrl = () => this.attributes.logo_url
3740

0 commit comments

Comments
 (0)