feat(api): add member.autoproxy_enabled

This commit is contained in:
spiral
2022-12-15 00:49:55 +00:00
parent 99d71aec2c
commit 513c3e1a72
2 changed files with 3 additions and 0 deletions

View File

@@ -130,6 +130,8 @@ public static class PKMemberExt
o.Add("created", member.CreatedFor(ctx)?.FormatExport());
o.Add("keep_proxy", member.KeepProxy);
o.Add("autoproxy_enabled", ctx == LookupContext.ByOwner ? member.AllowAutoproxy : null);
var tagArray = new JArray();
foreach (var tag in member.ProxyTags)
tagArray.Add(new JObject { { "prefix", tag.Prefix }, { "suffix", tag.Suffix } });