From: Tara L Andrews Date: Sun, 8 Apr 2012 21:10:40 +0000 (+0200) Subject: remove 'meaning' relationship from interface too X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d81fdda0d7b87d44ccb559fea314134bb7ac30d5;hp=0fa07e25e9bdb209065f4002a9eaf5185f42b31a;p=scpubgit%2Fstemmatology.git remove 'meaning' relationship from interface too --- diff --git a/stemmaweb/lib/stemmaweb/Controller/Relation.pm b/stemmaweb/lib/stemmaweb/Controller/Relation.pm index 8b72205..c44b544 100644 --- a/stemmaweb/lib/stemmaweb/Controller/Relation.pm +++ b/stemmaweb/lib/stemmaweb/Controller/Relation.pm @@ -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');