Merge pull request #100 from Pear-Trading/finn/medals
Placeholder medal and endpoint added
This commit is contained in:
commit
26191d413d
2 changed files with 52 additions and 0 deletions
|
@ -158,6 +158,10 @@ sub startup {
|
||||||
|
|
||||||
my $api_v1 = $api->under('/v1');
|
my $api_v1 = $api->under('/v1');
|
||||||
|
|
||||||
|
my $api_v1_user = $api_v1->under('/user');
|
||||||
|
|
||||||
|
$api_v1_user->post('/medals')->to('api-v1-user-medals#index');
|
||||||
|
|
||||||
my $api_v1_supplier = $api_v1->under('/supplier');
|
my $api_v1_supplier = $api_v1->under('/supplier');
|
||||||
|
|
||||||
$api_v1_supplier->post('/location')->to('api-v1-supplier-location#index');
|
$api_v1_supplier->post('/location')->to('api-v1-supplier-location#index');
|
||||||
|
|
48
lib/Pear/LocalLoop/Controller/Api/V1/User/Medals.pm
Normal file
48
lib/Pear/LocalLoop/Controller/Api/V1/User/Medals.pm
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
package Pear::LocalLoop::Controller::Api::V1::User::Medals;
|
||||||
|
use Mojo::Base 'Mojolicious::Controller';
|
||||||
|
use Mojo::JSON qw/true false/;
|
||||||
|
|
||||||
|
sub index {
|
||||||
|
my $c = shift;
|
||||||
|
|
||||||
|
my $validation = $c->validation;
|
||||||
|
$validation->input( $c->stash->{api_json} );
|
||||||
|
|
||||||
|
# Placeholder data
|
||||||
|
my $global_placeholder = {
|
||||||
|
group_name => {
|
||||||
|
threshold => {
|
||||||
|
awarded => true,
|
||||||
|
awarded_at => '2017-01-02T01:00:00Z',
|
||||||
|
threshold => 1,
|
||||||
|
points => 1,
|
||||||
|
},
|
||||||
|
total => 1,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
my $organisation_placeholder = {
|
||||||
|
org_id => {
|
||||||
|
group_name => {
|
||||||
|
threshold => {
|
||||||
|
awarded => true,
|
||||||
|
awarded_at => '2017-01-02T01:00:00Z',
|
||||||
|
threshold => 1,
|
||||||
|
points => 1,
|
||||||
|
multiplier => 1,
|
||||||
|
},
|
||||||
|
total => 1,
|
||||||
|
},
|
||||||
|
name => 'Placeholder',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
return $c->render(
|
||||||
|
json => {
|
||||||
|
success => Mojo::JSON->true,
|
||||||
|
global => $global_placeholder,
|
||||||
|
organisation => $organisation_placeholder,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
Reference in a new issue