Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김대욱
/
My_Project
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김대욱
2020-06-24 13:51:21 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
91a509f3d6c07c186df476a923914599fd528a78
91a509f3
1 parent
107f6994
app.js_1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app.js
app.js
View file @
91a509f
...
...
@@ -185,7 +185,7 @@ function updateUser(id, name) {
var
motive
=
'format'
;
var
check
=
false
;
if
(
!
name
.
match
(
alphanumeric
))
motive
=
'format'
;
//
if(!name.match(alphanumeric)) motive = 'format';
if
(
name
.
length
<
3
||
name
.
length
>
16
)
motive
=
'length'
;
if
(
utils
.
checkUser
(
clients
,
name
)
||
name
==
'Console'
||
name
==
'System'
)
motive
=
'taken'
;
if
(
clients
[
id
].
un
!=
null
)
check
=
true
;
...
...
Please
register
or
login
to post a comment