Daje-Plugin-Tools/lib/Daje/Controller/ToolsProjects.pm
package Daje::Controller::ToolsProjects;
use Mojo::Base 'Mojolicious::Controller', -signatures;
use v5.40;
# NAME
# ====
#
# Daje::Controller::Tools - Mojolicious Plugin
#
# SYNOPSIS
# ========
#
#
#
# DESCRIPTION
# ===========
#
# Daje::Controller::Tools is a Mojolicious plugin.
#
# METHODS
# =======
#
# Register plugin in L<Mojolicious> application.
#
# LICENSE
# =======
#
# Copyright (C) janeskil1525.
#
# This library is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
# AUTHOR
# ======
#
# janeskil1525 E<lt>janeskil1525@gmail.com
#
use Data::Dumper;
sub load_projects ($self) {
$self->app->log->debug('Daje::Controller::Toolsprojects::load_projects');
$self->render_later;
# my ($companies_pkey, $users_pkey) = $self->jwt->companies_users_pkey(
# $self->req->headers->header('X-Token-Check')
# );
$self->app->log->debug($self->req->headers->header('X-Token-Check'));
# my $setting = $self->param('setting');
$self->v_tools_projects->load_full_list_p()->then(sub($result) {
$self->render(json => { data => $result->{data}, result => => 1 });
})->catch(sub($err) {
$self->render(json => { 'result' => 0, data => $err });
})->wait;
}
sub save_projects ($self) {
$self->app->log->debug('Daje::Controller::Toolsprojects::save_projects');
$self->render_later;
my $json_hash = decode_json ($self->req->body);
$self->tools_projects->insert_tools_projects_p($json_hash)->then(sub ($result) {
$self->render(json => {'result' => $result});
})->catch( sub ($err) {
$self->render(json => {'result' => $err});
})->wait;
}
1;
#################### pod generated by Pod::Autopod - keep this line to make pod updates possible ####################
=head1 NAME
Daje::Controller::Tools - Mojolicious Plugin
=head1 SYNOPSIS
=head1 DESCRIPTION
Daje::Controller::Tools is a Mojolicious plugin.
=head1 REQUIRES
L<v5.40>
L<Mojo::Base>
=head1 METHODS
Register plugin in L<Mojolicious> application.
=head1 AUTHOR
janeskil1525 E<lt>janeskil1525@gmail.com
=head1 LICENSE
Copyright (C) janeskil1525.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut