Skip to content

Commit 36f9969

Browse files
authored
Merge pull request #471 from bounswe/feature/non-profit-job-tab
Feature/non profit job tab
2 parents ae01934 + bcca7cd commit 36f9969

File tree

9 files changed

+504
-103
lines changed

9 files changed

+504
-103
lines changed

apps/jobboard-mobile/lib/core/services/api_service.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ class ApiService {
183183
int? minSalary,
184184
int? maxSalary,
185185
bool? inclusiveOpportunity,
186+
bool? nonProfit,
186187
}) async {
187188
final queryParams = <String, dynamic>{};
188189

@@ -204,6 +205,9 @@ class ApiService {
204205
if (inclusiveOpportunity != null) {
205206
queryParams['inclusiveOpportunity'] = inclusiveOpportunity;
206207
}
208+
if (nonProfit != null) {
209+
queryParams['nonProfit'] = nonProfit;
210+
}
207211

208212

209213
final uri = _buildUri('/jobs', queryParams);

0 commit comments

Comments
 (0)