Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
337
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
24
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
9595f43d
Commit
9595f43d
authored
8 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
Fix bug
parent
d4f245f5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/api/endpoints/i/update.js
+11
-10
11 additions, 10 deletions
src/api/endpoints/i/update.js
src/web/app/desktop/tags/settings.tag
+6
-6
6 additions, 6 deletions
src/web/app/desktop/tags/settings.tag
with
17 additions
and
16 deletions
src/api/endpoints/i/update.js
+
11
−
10
View file @
9595f43d
...
...
@@ -32,6 +32,16 @@ module.exports = async (params, user, _, isSecure) =>
user
.
name
=
name
;
}
// Get 'description' parameter
const
description
=
params
.
description
;
if
(
description
!==
undefined
&&
description
!==
null
)
{
if
(
description
.
length
>
500
)
{
return
rej
(
'
too long description
'
);
}
user
.
description
=
description
;
}
// Get 'location' parameter
const
location
=
params
.
location
;
if
(
location
!==
undefined
&&
location
!==
null
)
{
...
...
@@ -42,16 +52,6 @@ module.exports = async (params, user, _, isSecure) =>
user
.
profile
.
location
=
location
;
}
// Get 'bio' parameter
const
bio
=
params
.
bio
;
if
(
bio
!==
undefined
&&
bio
!==
null
)
{
if
(
bio
.
length
>
500
)
{
return
rej
(
'
too long bio
'
);
}
user
.
profile
.
bio
=
bio
;
}
// Get 'birthday' parameter
const
birthday
=
params
.
birthday
;
if
(
birthday
!=
null
)
{
...
...
@@ -79,6 +79,7 @@ module.exports = async (params, user, _, isSecure) =>
await
User
.
update
(
user
.
_id
,
{
$set
:
{
name
:
user
.
name
,
description
:
user
.
description
,
avatar_id
:
user
.
avatar_id
,
banner_id
:
user
.
banner_id
,
profile
:
user
.
profile
...
...
This diff is collapsed.
Click to expand it.
src/web/app/desktop/tags/settings.tag
+
6
−
6
View file @
9595f43d
...
...
@@ -23,15 +23,15 @@
</label>
<label>
<p>場所</p>
<input ref="accountLocation" type="text" value={ I.location }/>
<input ref="accountLocation" type="text" value={ I.
profile.
location }/>
</label>
<label>
<p>自己紹介</p>
<textarea ref="account
B
io">{ I.
b
io }</textarea>
<textarea ref="account
Descript
io
n
">{ I.
descript
io
n
}</textarea>
</label>
<label>
<p>誕生日</p>
<input ref="accountBirthday" type="date" value={ I.birthday }/>
<input ref="accountBirthday" type="date" value={ I.
profile.
birthday }/>
</label>
<button class="style-primary" onclick={ updateAccount }>保存</button>
</section>
...
...
@@ -212,9 +212,9 @@
this.updateAccount = () => {
this.api('i/update', {
name: this.refs.accountName.value,
location: this.refs.accountLocation.value,
b
io: this.refs.account
B
io.value,
birthday: this.refs.accountBirthday.value
location: this.refs.accountLocation.value
|| undefined
,
descript
io
n
: this.refs.account
Descript
io
n
.value
|| undefined
,
birthday: this.refs.accountBirthday.value
|| undefined
}).then(() => {
this.notify('プロフィールを更新しました');
});
...
...
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