View | Details | Raw Unified | Return to bug 20016
Collapse All | Expand All

(-)a/svc/authentication (-2 / +1 lines)
Lines 18-25 Link Here
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
#
19
#
20
20
21
use strict;
21
use Modern::Perl;
22
use warnings;
23
22
24
use CGI qw ( -utf8 );
23
use CGI qw ( -utf8 );
25
use C4::Auth qw/check_api_auth/;
24
use C4::Auth qw/check_api_auth/;
(-)a/svc/bib (-2 / +1 lines)
Lines 19-26 Link Here
19
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
# along with Koha; if not, see <http://www.gnu.org/licenses>.
20
#
20
#
21
21
22
use strict;
22
use Modern::Perl;
23
use warnings;
24
23
25
use CGI qw ( -utf8 );
24
use CGI qw ( -utf8 );
26
use C4::Auth qw/check_api_auth/;
25
use C4::Auth qw/check_api_auth/;
(-)a/svc/bib_profile (-2 / +1 lines)
Lines 18-25 Link Here
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
#
19
#
20
20
21
use strict;
21
use Modern::Perl;
22
use warnings;
23
22
24
use CGI qw ( -utf8 );
23
use CGI qw ( -utf8 );
25
use C4::Auth qw/check_api_auth/;
24
use C4::Auth qw/check_api_auth/;
(-)a/svc/checkouts (-2 / +1 lines)
Lines 17-24 Link Here
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
17
# with Koha; if not, write to the Free Software Foundation, Inc.,
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
19
20
use strict;
20
use Modern::Perl;
21
use warnings;
22
21
23
use CGI;
22
use CGI;
24
use JSON qw(to_json);
23
use JSON qw(to_json);
(-)a/svc/config/systempreferences (-2 / +1 lines)
Lines 18-25 Link Here
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
#
19
#
20
20
21
use strict;
21
use Modern::Perl;
22
use warnings;
23
22
24
use C4::Context;
23
use C4::Context;
25
use C4::Service;
24
use C4::Service;
(-)a/svc/import_bib (-2 / +1 lines)
Lines 18-25 Link Here
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
#
19
#
20
20
21
use strict;
21
use Modern::Perl;
22
use warnings;
23
22
24
use CGI qw ( -utf8 );
23
use CGI qw ( -utf8 );
25
use C4::Auth qw/check_api_auth/;
24
use C4::Auth qw/check_api_auth/;
(-)a/svc/new_bib (-3 / +1 lines)
Lines 18-25 Link Here
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
18
# along with Koha; if not, see <http://www.gnu.org/licenses>.
19
#
19
#
20
20
21
use strict;
21
use Modern::Perl;
22
use warnings;
23
22
24
use CGI qw ( -utf8 );
23
use CGI qw ( -utf8 );
25
use C4::Auth qw/check_api_auth/;
24
use C4::Auth qw/check_api_auth/;
26
- 

Return to bug 20016