rename restrict by user
[dbsrgits/DBIx-Class-Schema-RestrictWithObject.git] / lib / DBIx / Class / Schema / RestrictByUser / RestrictComp / Schema.pm
CommitLineData
772c89c1 1package DBIx::Class::Schema::RestrictByUser::RestrictComp::Schema;
2
3use strict;
4use warnings;
5use base qw/DBIx::Class::AccessorGroup/;
6
7=head1 DESCRIPTION
8
9For general usage please see L<DBIx::Class::Schema::RestrictByUser>, the information
10provided here is not meant for general use and is subject to change. In the interest
11of transparency the functionality presented is documented, but all methods should be
12considered private and, as such, subject to incompatible changes and removal.
13
14=head1 ADDITIONAL ACCESSORS
15
16=head2 user
17
18Store the user object used to restict resultsets
19
20=head2 restricted_prefix
21
22Store the prefix, if any, to use when looking for the appropriate resstrict
23methods in the user object
24
25=cut
26
27__PACKAGE__->mk_group_accessors('simple' => 'user');
28__PACKAGE__->mk_group_accessors('simple' => 'restricted_prefix');
29
301;
31
32=head1 SEE ALSO
33
34L<DBIx::Class::Schema::RestrictByUser>,
35
36=cut