Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ehasa-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
WIMMA Lab 2019
Overflow
ehasa-backend
Commits
12aa9a51
Commit
12aa9a51
authored
5 years ago
by
L4168
Browse files
Options
Downloads
Patches
Plain Diff
cleaning up
parent
e92c2d8b
No related branches found
No related tags found
3 merge requests
!59
Development to master
,
!31
Development
,
!23
Faction tasks + Piirto
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/game/faction.entity.ts
+4
-4
4 additions, 4 deletions
src/game/faction.entity.ts
src/game/game.entity.ts
+2
-2
2 additions, 2 deletions
src/game/game.entity.ts
src/game/game.service.ts
+2
-2
2 additions, 2 deletions
src/game/game.service.ts
with
8 additions
and
8 deletions
src/game/faction.entity.ts
+
4
−
4
View file @
12aa9a51
...
...
@@ -21,14 +21,14 @@ export class FactionEntity {
@
OneToMany
(
type
=>
Game_PersonEntity
,
game_persons
=>
game_persons
.
faction
)
game_persons
:
Game_PersonEntity
[];
@
ManyToOne
(
type
=>
GameEntity
,
game
=>
game
.
id
)
game
Id
:
GameEntity
;
@
ManyToOne
(
type
=>
GameEntity
,
game
=>
game
.
factions
)
game
:
GameEntity
;
@
OneToMany
(
type
=>
MapDrawingEntity
,
mapDrawings
=>
mapDrawings
.
faction
)
mapDrawings
:
MapDrawingEntity
[];
factionObject
()
{
const
{
factionId
,
factionName
,
game
Id
}
=
this
;
return
{
factionId
,
factionName
,
game
Id
};
const
{
factionId
,
factionName
,
game
}
=
this
;
return
{
factionId
,
factionName
,
game
};
}
}
...
...
This diff is collapsed.
Click to expand it.
src/game/game.entity.ts
+
2
−
2
View file @
12aa9a51
...
...
@@ -29,7 +29,7 @@ export class GameEntity {
@
Column
(
'
timestamp
'
)
startdate
:
Timestamp
;
@
Column
(
'
timestamp
'
)
enddate
:
Timestamp
;
@
OneToMany
(
type
=>
FactionEntity
,
factions
=>
factions
.
game
Id
)
@
OneToMany
(
type
=>
FactionEntity
,
factions
=>
factions
.
game
)
factions
:
FactionEntity
[];
@
OneToMany
(
type
=>
Game_PersonEntity
,
game_persons
=>
game_persons
.
game
)
game_persons
:
Game_PersonEntity
[];
...
...
@@ -52,7 +52,7 @@ export class GameEntity {
export
class
Game_PersonEntity
{
@
PrimaryGeneratedColumn
(
'
uuid
'
)
gamepersonId
:
string
;
@
Column
({
type
:
'
text
'
,
nullable
:
true
})
role
:
string
;
@
ManyToOne
(
type
=>
FactionEntity
,
faction
=>
faction
)
@
ManyToOne
(
type
=>
FactionEntity
,
faction
=>
faction
.
game_persons
)
faction
:
FactionEntity
;
@
ManyToOne
(
type
=>
GameEntity
,
game
=>
game
.
id
)
game
:
GameEntity
;
...
...
This diff is collapsed.
Click to expand it.
src/game/game.service.ts
+
2
−
2
View file @
12aa9a51
...
...
@@ -86,7 +86,7 @@ export class GameService {
if
(
!
Object
.
values
(
factionNames
).
includes
(
faction
.
factionName
))
{
let
name
=
await
this
.
factionRepository
.
create
({
...
faction
,
game
Id
:
gameId
,
game
:
gameId
,
});
await
this
.
factionRepository
.
insert
(
name
);
}
...
...
@@ -217,7 +217,7 @@ export class GameService {
// add events to history and send updates with socket
async
flagboxEvent
(
gameId
,
data
:
FlagboxEventDTO
)
{
// get all the factions associated with the game
const
factionRef
=
await
this
.
factionRepository
.
find
({
game
Id
:
gameId
});
const
factionRef
=
await
this
.
factionRepository
.
find
({
game
:
gameId
});
// get reference to the objective
const
objectiveRef
=
await
this
.
objectivePointRepository
.
findOne
({
where
:
{
objectivePointDescription
:
data
.
node_id
,
game
:
gameId
},
...
...
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