https://github.com/monken/p5-catalystx-extjs-rest
Feature-rich REST controller for use with ExtJS
https://github.com/monken/p5-catalystx-extjs-rest
Last synced: 3 months ago
JSON representation
Feature-rich REST controller for use with ExtJS
- Host: GitHub
- URL: https://github.com/monken/p5-catalystx-extjs-rest
- Owner: monken
- Created: 2011-02-05T17:53:47.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2014-01-15T13:38:39.000Z (over 11 years ago)
- Last Synced: 2025-01-29T05:13:38.810Z (5 months ago)
- Language: Perl
- Homepage:
- Size: 1.07 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.pod
- Changelog: Changes
Awesome Lists containing this project
README
package CatalystX::ExtJS::REST;
# ABSTRACT: Feature-rich REST controller for use with ExtJS
1;
__END__
=head1 SYNOPSIS
package MyApp::Controller::User;
use Moose;
BEGIN { extends 'CatalystX::Controller::ExtJS::REST' }
__PACKAGE__->config( default_resultset => 'User',
forms => {
default => [
{ name => 'id' },
{ name => 'email', constraint => 'Required' },
{ name => 'password' }
],
} );
1;=head1 DESCRIPTION
This module adds feature-rich REST controllers to your application.
L gives examples and describes
all configuration options.Have a look at the L
which shows integration of this controller with L.=head1 SEE ALSO
=over 4
=item L
Parent namespace. Includes examples and the code for the tutorial.
=item L
Enable Ext.Direct in Catalyst controllers.
=back