# CatalystX-ExtJS-REST **Repository Path**: mirrors_gitpan/CatalystX-ExtJS-REST ## Basic Information - **Project Name**: CatalystX-ExtJS-REST - **Description**: Read-only release history for CatalystX-ExtJS-REST - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-09-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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