Skip to content
Snippets Groups Projects
Commit cd664360 authored by Rudolf Copi Eckelberg's avatar Rudolf Copi Eckelberg
Browse files

Removed location models

parent 90a2f1e8
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!25Auth
Pipeline #
/* 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;
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment