Skip to content

Commit 445e54f

Browse files
[Bot] push changes from Files.com
1 parent dc3cf42 commit 445e54f

File tree

7 files changed

+20
-4
lines changed

7 files changed

+20
-4
lines changed

_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.411
1+
1.0.412

docs/models/Site.md

+5
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
"ldap_username_field": "sAMAccountName",
8585
"login_help_text": "Login page help text.",
8686
"logo": null,
87+
"login_page_background_image": null,
8788
"max_prior_passwords": 1,
8889
"motd_text": "example",
8990
"motd_use_for_ftp": true,
@@ -300,6 +301,7 @@
300301
* `ldap_username_field` (string): LDAP username field
301302
* `login_help_text` (string): Login help text
302303
* `logo` (Image): Branded logo
304+
* `login_page_background_image` (Image): Branded login page background
303305
* `max_prior_passwords` (int64): Number of prior passwords to disallow
304306
* `motd_text` (string): A message to show users when they connect via FTP or SFTP.
305307
* `motd_use_for_ftp` (boolean): Show message to users connecting via FTP
@@ -518,6 +520,7 @@ await Site.update({
518520
'icon128_delete': true,
519521
'logo_delete': true,
520522
'bundle_watermark_attachment_delete': true,
523+
'login_page_background_image_delete': true,
521524
'disable_2fa_with_delay': true,
522525
'session_expiry_minutes': 1,
523526
})
@@ -658,6 +661,8 @@ await Site.update({
658661
* `logo_delete` (boolean): If true, will delete the file stored in logo
659662
* `bundle_watermark_attachment_file` (file):
660663
* `bundle_watermark_attachment_delete` (boolean): If true, will delete the file stored in bundle_watermark_attachment
664+
* `login_page_background_image_file` (file):
665+
* `login_page_background_image_delete` (boolean): If true, will delete the file stored in login_page_background_image
661666
* `disable_2fa_with_delay` (boolean): If set to true, we will begin the process of disabling 2FA on this site.
662667
* `ldap_password_change` (string): New LDAP password.
663668
* `ldap_password_change_confirmation` (string): Confirm new LDAP password.

lib/Files.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
1111
var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
14-
var version = "1.0.411";
14+
var version = "1.0.412";
1515
var userAgent = "Files.com JavaScript SDK v".concat(version);
1616
var logLevel = _Logger.LogLevel.INFO;
1717
var debugRequest = false;

lib/models/Site.js

+6
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,10 @@ var Site = /*#__PURE__*/(0, _createClass2.default)(function Site() {
344344
(0, _defineProperty2.default)(this, "getLogo", function () {
345345
return _this.attributes.logo;
346346
});
347+
// Image # Branded login page background
348+
(0, _defineProperty2.default)(this, "getLoginPageBackgroundImage", function () {
349+
return _this.attributes.login_page_background_image;
350+
});
347351
// int64 # Number of prior passwords to disallow
348352
(0, _defineProperty2.default)(this, "getMaxPriorPasswords", function () {
349353
return _this.attributes.max_prior_passwords;
@@ -797,6 +801,8 @@ _class = Site;
797801
// logo_delete - boolean - If true, will delete the file stored in logo
798802
// bundle_watermark_attachment_file - file
799803
// bundle_watermark_attachment_delete - boolean - If true, will delete the file stored in bundle_watermark_attachment
804+
// login_page_background_image_file - file
805+
// login_page_background_image_delete - boolean - If true, will delete the file stored in login_page_background_image
800806
// disable_2fa_with_delay - boolean - If set to true, we will begin the process of disabling 2FA on this site.
801807
// ldap_password_change - string - New LDAP password.
802808
// ldap_password_change_confirmation - string - Confirm new LDAP password.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "files.com",
3-
"version": "1.0.411",
3+
"version": "1.0.412",
44
"description": "Files.com SDK for JavaScript",
55
"keywords": [
66
"files.com",

src/Files.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const endpointPrefix = '/api/rest/v1'
55
let apiKey
66
let baseUrl = 'https://app.files.com'
77
let sessionId = null
8-
let version = "1.0.411"
8+
let version = "1.0.412"
99
let userAgent = `Files.com JavaScript SDK v${version}`
1010

1111
let logLevel = LogLevel.INFO

src/models/Site.js

+5
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,9 @@ class Site {
257257
// Image # Branded logo
258258
getLogo = () => this.attributes.logo
259259

260+
// Image # Branded login page background
261+
getLoginPageBackgroundImage = () => this.attributes.login_page_background_image
262+
260263
// int64 # Number of prior passwords to disallow
261264
getMaxPriorPasswords = () => this.attributes.max_prior_passwords
262265

@@ -604,6 +607,8 @@ class Site {
604607
// logo_delete - boolean - If true, will delete the file stored in logo
605608
// bundle_watermark_attachment_file - file
606609
// bundle_watermark_attachment_delete - boolean - If true, will delete the file stored in bundle_watermark_attachment
610+
// login_page_background_image_file - file
611+
// login_page_background_image_delete - boolean - If true, will delete the file stored in login_page_background_image
607612
// disable_2fa_with_delay - boolean - If set to true, we will begin the process of disabling 2FA on this site.
608613
// ldap_password_change - string - New LDAP password.
609614
// ldap_password_change_confirmation - string - Confirm new LDAP password.

0 commit comments

Comments
 (0)