Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
8a0b0e33
Commit
8a0b0e33
authored
5 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
Add missing space between to i18n strings
parent
830fe784
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/api/session.clj
+1
-1
1 addition, 1 deletion
src/metabase/api/session.clj
src/metabase/public_settings.clj
+1
-0
1 addition, 0 deletions
src/metabase/public_settings.clj
with
2 additions
and
1 deletion
src/metabase/api/session.clj
+
1
−
1
View file @
8a0b0e33
...
...
@@ -134,7 +134,7 @@
(
throttle-check
(
forgot-password-throttlers
:ip-address
)
remote-address
)
(
throttle-check
(
forgot-password-throttlers
:email
)
email
)
;; Don't leak whether the account doesn't exist, just pretend everything is ok
(
when-let
[{
user-id
:id,
google-auth?
:google_auth
}
(
db/select-one
[
'
User
:id
:google_auth
]
(
when-let
[{
user-id
:id,
google-auth?
:google_auth
}
(
db/select-one
[
User
:id
:google_auth
]
:email
email,
:is_active
true
)]
(
let
[
reset-token
(
user/set-password-reset-token!
user-id
)
password-reset-url
(
str
(
public-settings/site-url
)
"/auth/reset_password/"
reset-token
)]
...
...
This diff is collapsed.
Click to expand it.
src/metabase/public_settings.clj
+
1
−
0
View file @
8a0b0e33
...
...
@@ -53,6 +53,7 @@
(
defsetting
site-locale
(
str
(
tru
"The default language for this Metabase instance."
)
" "
(
tru
"This only applies to emails, Pulses, etc. Users'' browsers will specify the language used in the user interface."
))
:type
:string
:setter
(
fn
[
new-value
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment