Open Bug 1103001 Opened 10 years ago

The current webservice API for returning flag type information does not return is_requestable

Categories

(Bugzilla :: WebService, enhancement)

enhancement
Not set
normal

Tracking

()

People

(Reporter: dkl, Unassigned)

Details

Currently it only returns:

    my $item = {
        id          => $self->type('int'    , $flagtype->id),
        name        => $self->type('string' , $flagtype->name),
        description => $self->type('string' , $flagtype->description),
        type        => $self->type('string' , $flagtype->target_type),
        values      => \@values,
        is_active   => $self->type('boolean', $flagtype->is_active),
        is_requesteeble  => $self->type('boolean', $flagtype->is_requesteeble),
        is_multiplicable => $self->type('boolean', $flagtype->is_multiplicable)
    };

omitting is_requestable. Not sure why that was but it would be useful to include that information.

Note: Update the REST docs when this is added.

dkl
You need to log in before you can comment on or make changes to this bug.