Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
simcaq-node
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor 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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simcaq
simcaq-node
Commits
cd664360
There was a problem fetching the pipeline summary.
Commit
cd664360
authored
8 years ago
by
Rudolf Copi Eckelberg
Browse files
Options
Downloads
Patches
Plain Diff
Removed location models
parent
90a2f1e8
No related branches found
No related tags found
2 merge requests
!116
Release v1.0.0
,
!25
Auth
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libs/models/locations.js
+0
-34
0 additions, 34 deletions
src/libs/models/locations.js
src/libs/models/simulation.js
+0
-2
0 additions, 2 deletions
src/libs/models/simulation.js
with
0 additions
and
36 deletions
src/libs/models/locations.js
deleted
100644 → 0
+
0
−
34
View file @
90a2f1e8
/* These classes are defined to allow checking of location type with the
instanceof operator. */
class
Location
{}
// Location types
class
City
extends
Location
{
constructor
(
id
)
{
super
();
this
.
id
=
id
;
}
}
class
State
extends
Location
{
constructor
(
id
)
{
super
();
this
.
id
=
id
;
}
}
class
Region
extends
Location
{
constructor
(
id
)
{
super
();
this
.
id
=
id
;
}
}
const
locations
=
{
location
:
Location
,
city
:
City
,
state
:
State
,
region
:
Region
};
module
.
exports
=
locations
;
This diff is collapsed.
Click to expand it.
src/libs/models/simulation.js
+
0
−
2
View file @
cd664360
...
...
@@ -4,8 +4,6 @@ const libs = `${process.cwd()}/libs`;
const
config
=
require
(
`
${
libs
}
/config`
);
const
log
=
require
(
`
${
libs
}
/log`
)(
module
);
const
locations
=
require
(
`
${
libs
}
/models/locations`
);
const
Schema
=
mongoose
.
Schema
;
// Should define this somewhere else
...
...
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