/[transports]/trunk/lib/Transports/Model/Destination.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/Destination.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 22 - (show annotations)
Fri May 26 18:35:08 2006 UTC (17 years, 11 months ago) by dpavlin
File size: 887 byte(s)
added current_user_can for create, read and update to everybody
1 use strict;
2 use warnings;
3
4 package Transports::Model::Destination::Schema;
5 use Jifty::DBI::Schema;
6
7 column name =>
8 type is 'text',
9 label is 'Destination client',
10 is mandatory,
11 since '0.0.7';
12
13 # Your column definitions go here. See L<Jifty::DBI::Schema> for
14 # documentation about how to write column definitions.
15
16 package Transports::Model::Destination;
17 use base qw/Transports::Record/;
18
19 # Your model-specific methods go here.
20
21 sub available_values {
22 my $self = shift;
23 return $self->column("name")->valid_values;
24 }
25
26 =head2 current_user_can ACTION
27
28 Let everybody create, read and update, but not delete.
29
30 =cut
31
32 sub current_user_can {
33 my $self = shift;
34 my $type = shift;
35
36 # We probably want something like this eventually:
37 if ($type =~ /(?:create|read|update)/i) {
38 return 1;
39 } else {
40 return $self->SUPER::current_user_can($type, @_);
41 }
42 }
43
44 1;
45

  ViewVC Help
Powered by ViewVC 1.1.26