• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

rwjdk / TrelloDotNet / 13540761377

26 Feb 2025 09:33AM UTC coverage: 41.845% (-3.2%) from 44.997%
13540761377

push

github

rwjdk
More 2.x work

955 of 3217 branches covered (29.69%)

Branch coverage included in aggregate %.

3 of 240 new or added lines in 11 files covered. (1.25%)

5 existing lines in 3 files now uncovered.

2475 of 4980 relevant lines covered (49.7%)

42.46 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/TrelloDotNet/Model/Options/GetOrganizationOptions/GetOrganizationOptions.cs
1
using System.Collections.Generic;
2

3
namespace TrelloDotNet.Model.Options.GetOrganizationOptions
4
{
5
    /// <summary>
6
    /// Options on how and what should be included on the Organizations (Example only a few fields to increase performance or more nested data to avoid more API calls)
7
    /// </summary>
8
    public class GetOrganizationOptions
9
    {
10
        /// <summary>
11
        /// What Organization (Workspace)-fields to include if IncludeBoard are set to True
12
        /// </summary>
NEW
13
        public OrganizationFields OrganizationFields { get; set; }
×
14

15
        /// <summary>
16
        /// Additional Parameters not supported out-of-the-box
17
        /// </summary>
NEW
18
        public List<QueryParameter> AdditionalParameters { get; set; } = new List<QueryParameter>();
×
19

20
        internal QueryParameter[] GetParameters()
21
        {
NEW
22
            List<QueryParameter> parameters = new List<QueryParameter>();
×
23

NEW
24
            if (OrganizationFields != null)
×
25
            {
NEW
26
                parameters.Add(new QueryParameter("fields", string.Join(",", OrganizationFields.Fields)));
×
27
            }
28

NEW
29
            parameters.AddRange(AdditionalParameters);
×
30

NEW
31
            return parameters.ToArray();
×
32
        }
33
    }
34
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc