/[transports]/trunk/lib/Transports/Model/User.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/Transports/Model/User.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 5 - (show annotations)
Thu May 4 21:54:50 2006 UTC (18 years ago) by dpavlin
File size: 664 byte(s)
partly added login and logout from wifty
1 use strict;
2 use warnings;
3
4 package Transports::Model::User::Schema;
5 use Jifty::DBI::Schema;
6
7 # Your column definitions go here. See L<Jifty::DBI::Schema> for
8 # documentation about how to write column definitions.
9
10 column name =>
11 type is 'text',
12 label is 'Name',
13 is mandatory,
14 is distinct;
15
16 column email =>
17 type is 'text',
18 label is 'Email address',
19 is mandatory,
20 is distinct;
21
22 column password =>,
23 type is 'text',
24 label is 'Password',
25 is mandatory,
26 render_as 'password';
27
28 package Transports::Model::User;
29 use base qw/Transports::Record/;
30
31 # Your model-specific methods go here.
32
33 sub password {
34 return undef;
35 }
36
37 1;
38

  ViewVC Help
Powered by ViewVC 1.1.26