1

Hi There :-)

I'm currently developing a plugin for Fogbugz,and I would like to know if it is possible from the Plugin API to determine which groups a Person is member of ?

I can't find any Group API and I can't find a table in the Fogbugz database that describes the correlation between Persons and Groups.

I will appreciate any hints or help to lead me in the right direction, thanks in advance :-)

ThomasE

flag

1 Answer

1

Problem solved, by using properties on ProjectQuery class

        FogCreek.FogBugz.Database.Entity.CProjectQuery _CProjectQuery = _api.Project.NewProjectQuery();
        _CProjectQuery.IgnorePermissions = true;
        _CProjectQuery.ExcludeUnreadableWithin = true;
        _CProjectQuery.ExcludeUnwritable = true;
        _CProjectQuery.AddSelect("*");
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.