Use flag icons in network view

This commit is contained in:
joeuhren
2020-11-23 19:09:05 -07:00
parent 781d9ee915
commit e8bb0740ea
3 changed files with 16 additions and 11 deletions
+2 -1
View File
@@ -7,7 +7,8 @@ var PeersSchema = new Schema({
port: { type: String, default: "" },
protocol: { type: String, default: "" },
version: { type: String, default: "" },
country: { type: String, default: "" }
country: { type: String, default: "" },
country_code: { type: String, default: "" }
});
module.exports = mongoose.model('Peers', PeersSchema);