remove 'meaning' relationship from interface too
Tara L Andrews [Sun, 8 Apr 2012 21:10:40 +0000 (23:10 +0200)]
stemmaweb/lib/stemmaweb/Controller/Relation.pm

index 8b72205..c44b544 100644 (file)
@@ -52,8 +52,7 @@ Returns a data structure giving the valid types and scopes for a relationship.
 
 sub definitions :Local :Args(0) {
        my( $self, $c ) = @_;
-       my $valid_relationships = [ qw/ spelling orthographic grammatical meaning 
-                                                                       lexical transposition / ];
+       my $valid_relationships = [ qw/ spelling orthographic grammatical lexical transposition / ];
        my $valid_scopes = [ qw/ local global / ];
        $c->stash->{'result'} = { 'types' => $valid_relationships, 'scopes' => $valid_scopes };
        $c->forward('View::JSON');