Merge branch 'max_dev' of Software_Engineering_I/greenvironment-frontend into master
commit
101f244d16
@ -1,15 +1,15 @@
|
||||
export class Actionlist{
|
||||
actions: { id: number, name: string, points: number}[] = [
|
||||
{ id: 0, name: "collect much trash",points: 25},
|
||||
{ id: 1, name: "collect a bit trash",points: 5 },
|
||||
{ id: 2, name: "trash seperation", points: 5 },
|
||||
{ id: 0, name: "collect a lot of trash",points: 25},
|
||||
{ id: 1, name: "collect a bit of trash",points: 10 },
|
||||
{ id: 2, name: "do trash seperation", points: 5 },
|
||||
{ id: 3, name: "plant a tree", points: 2 },
|
||||
{ id: 4, name: "beautify yout surroundings", points: 8 },
|
||||
{ id: 4, name: "beautify your surroundings", points: 8 },
|
||||
{ id: 5, name: "reduce waste", points: 5 },
|
||||
{ id: 6, name: "reduce CO2 emission", points: 5 },
|
||||
{ id: 7, name: "eat a vegetarian meal", points: 2 },
|
||||
{ id: 8, name: "don't use the car", points: 10 },
|
||||
{ id: 9, name: "buy fair trade/ local product", points: 1 },
|
||||
{ id: 10, name: "donate money to an environment organisation ", points: 3 },
|
||||
{ id: 9, name: "buy a fair trade/ local product", points: 1 },
|
||||
{ id: 10, name: "donate money to an environment organisation ", points: 10 },
|
||||
];
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
export const environment = {
|
||||
production: true
|
||||
production: true,
|
||||
graphQLUrl: '/graphql'
|
||||
};
|
||||
|
Loading…
Reference in New Issue