Skip to content

Commit d58b2c7

Browse files
authored
Merge pull request #331 from sil-org/remove-feedback-url
Release 8.0.0-pre.2 -- remove support feedback URL
2 parents 51ddbf4 + 1962513 commit d58b2c7

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

api.raml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ types:
2525
phone: string
2626
email: string
2727
url: string
28-
feedbackUrl: string
2928
passwordRules:
3029
type: object
3130
properties:
@@ -40,7 +39,6 @@ types:
4039
"phone": "1-234-567-8901",
4140
"email": "support@example.com",
4241
"url": "http://support.example.com",
43-
"feedbackUrl": "feedback@example.com"
4442
},
4543
"passwordRules": {
4644
"minLength": 10,

application/common/config/main.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
$supportName = Env::get('SUPPORT_NAME', 'support');
3535
$supportPhone = Env::get('SUPPORT_PHONE');
3636
$supportUrl = Env::get('SUPPORT_URL');
37-
$supportFeedback = Env::get('SUPPORT_FEEDBACK');
3837
$accessTokenHashKey = Env::get('ACCESS_TOKEN_HASH_KEY');
3938

4039
$emailerClass = Env::get('EMAILER_CLASS', Emailer::class);
@@ -272,7 +271,6 @@
272271
'phone' => $supportPhone,
273272
'email' => $supportEmail,
274273
'url' => $supportUrl,
275-
'feedbackUrl' => $supportFeedback,
276274
],
277275
'idBrokerConfig' => $idBrokerConfig,
278276
],

local.env.dist

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ UI_CORS_ORIGIN=
5050
#SUPPORT_EMAIL=
5151
#SUPPORT_NAME=support
5252
#SUPPORT_URL=
53-
#SUPPORT_FEEDBACK=
5453

5554

5655
# === ReCAPTCHA config data ===

0 commit comments

Comments
 (0)