Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RoleGame
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Lehoux
RoleGame
Merge requests
!1
Release 0.1: Authentication & Session
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Release 0.1: Authentication & Session
release-0.1
into
master
Overview
0
Commits
7
Pipelines
0
Changes
11
Merged
Release 0.1: Authentication & Session
Martin Lehoux
requested to merge
release-0.1
into
master
Feb 11, 2019
Overview
0
Commits
7
Pipelines
0
Changes
11
closes
#1 (closed)
Edited
Feb 11, 2019
by
Martin Lehoux
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8422e15c
7 commits,
Feb 11, 2019
11 files
+
235
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
models/character.js
0 → 100644
+
8
−
0
View file @ 8422e15c
Edit in single-file editor
Open in Web IDE
const
mongoose
=
require
(
'
mongoose
'
);
const
Character
=
new
mongoose
.
Schema
({
name
:
String
,
level
:
Number
,
});
module
.
exports
=
mongoose
.
model
(
'
Character
'
,
Character
);
\ No newline at end of file
Loading