mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-17 11:54:22 +01:00
Merge branch 'dev' for release 6.3.19
This commit is contained in:
commit
d70cc8ee6d
@ -2,6 +2,9 @@
|
||||
|
||||
## Next release
|
||||
|
||||
## v6.3.19 2024 Avril 9
|
||||
- Fix a bug: user is blocked in complete profile page after login
|
||||
|
||||
## v6.3.18 2024 Avril 8
|
||||
|
||||
- improvement: hide gender in signup form if not required
|
||||
|
@ -115,7 +115,7 @@ class User < ApplicationRecord
|
||||
end
|
||||
|
||||
def need_completion?
|
||||
(Setting.get('gender_required') && statistic_profile.gender.blank?) ||
|
||||
(Setting.get('gender_required') && statistic_profile.gender.nil?) ||
|
||||
profile.first_name.blank? || profile.last_name.blank? || username.blank? ||
|
||||
email.blank? || encrypted_password.blank? || group_id.nil? ||
|
||||
(Setting.get('birthday_required') && statistic_profile.birthday.blank?) ||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "fab-manager",
|
||||
"version": "6.3.18",
|
||||
"version": "6.3.19",
|
||||
"description": "Fab-manager is the FabLab management solution. It provides a comprehensive, web-based, open-source tool to simplify your administrative tasks and your marker's projects.",
|
||||
"keywords": [
|
||||
"fablab",
|
||||
|
Loading…
x
Reference in New Issue
Block a user