1 /*
2  *  Make.org Core API
3  *  Copyright (C) 2018 Make.org
4  *
5  * This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU Affero General Public License as
7  *  published by the Free Software Foundation, either version 3 of the
8  *  License, or (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU Affero General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Affero General Public License
16  *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  *
18  */
19 
20 package org.make.api.organisation
21 
22 import cats.implicits._
23 import akka.http.scaladsl.server._
24 import akka.http.scaladsl.unmarshalling.Unmarshaller._
25 import grizzled.slf4j.Logging
26 import io.swagger.annotations._
27 import org.make.api.operation.OperationServiceComponent
28 
29 import javax.ws.rs.Path
30 import org.make.api.proposal.{
31   ProposalServiceComponent,
32   ProposalsResultSeededResponse,
33   ProposalsResultWithUserVoteSeededResponse
34 }
35 import org.make.api.question.QuestionServiceComponent
36 import org.make.api.technical.MakeAuthenticationDirectives
37 import org.make.api.technical.CsvReceptacle._
38 import org.make.api.technical.MakeDirectives.MakeDirectivesDependencies
39 import org.make.api.technical.directives.FutureDirectivesExtensions._
40 import org.make.api.user.UserResponse
41 import org.make.core.auth.UserRights
42 import org.make.core.technical.Pagination
43 import org.make.core.common.indexed.Sort
44 import org.make.core.operation.OperationKind
45 import org.make.core.profile.Profile
46 import org.make.core.proposal.indexed.ProposalElasticsearchFieldName
47 import org.make.core.proposal._
48 import org.make.core.reference.{Country, Language}
49 import org.make.core.user.UserId
50 import org.make.core.{HttpCodes, Order, ParameterExtractors}
51 import scalaoauth2.provider.AuthInfo
52 
53 @Api(value = "Organisations")
54 @Path(value = "/organisations")
55 trait OrganisationApi extends Directives {
56 
57   @ApiOperation(value = "get-organisation", httpMethod = "GET", code = HttpCodes.OK)
58   @ApiImplicitParams(
59     value = Array(new ApiImplicitParam(name = "organisationId", paramType = "path", dataType = "string"))
60   )
61   @ApiResponses(value = Array(new ApiResponse(code = HttpCodes.OK, message = "Ok", response = classOf[UserResponse])))
62   @Path(value = "/{organisationId}")
63   def getOrganisation: Route
64 
65   @ApiOperation(value = "get-organisation-profile", httpMethod = "GET", code = HttpCodes.OK)
66   @ApiImplicitParams(
67     value = Array(new ApiImplicitParam(name = "organisationId", paramType = "path", dataType = "string"))
68   )
69   @ApiResponses(
70     value = Array(new ApiResponse(code = HttpCodes.OK, message = "Ok", response = classOf[OrganisationProfileResponse]))
71   )
72   @Path(value = "/{organisationId}/profile")
73   def getOrganisationProfile: Route
74 
75   @ApiOperation(value = "get-organisations", httpMethod = "GET", code = HttpCodes.OK)
76   @ApiImplicitParams(
77     value = Array(
78       new ApiImplicitParam(name = "organisationIds", paramType = "query", dataType = "string"),
79       new ApiImplicitParam(name = "organisationName", paramType = "query", dataType = "string"),
80       new ApiImplicitParam(name = "slug", paramType = "query", dataType = "string"),
81       new ApiImplicitParam(name = "country", paramType = "query", dataType = "string"),
82       new ApiImplicitParam(name = "language", paramType = "query", dataType = "string")
83     )
84   )
85   @ApiResponses(
86     value =
87       Array(new ApiResponse(code = HttpCodes.OK, message = "Ok", response = classOf[OrganisationsSearchResultResponse]))
88   )
89   def getOrganisations: Route
90 
91   @ApiOperation(value = "get-organisation-proposals", httpMethod = "GET", code = HttpCodes.OK)
92   @ApiImplicitParams(
93     value = Array(
94       new ApiImplicitParam(name = "organisationId", paramType = "path", dataType = "string"),
95       new ApiImplicitParam(name = "preferredLanguage", paramType = "query", dataType = "string", example = "fr"),
96       new ApiImplicitParam(
97         name = "sort",
98         paramType = "query",
99         dataType = "string",
100         example = "createdAt",
101         allowableValues = ProposalElasticsearchFieldName.swaggerAllowableValues
102       ),
103       new ApiImplicitParam(
104         name = "order",
105         paramType = "query",
106         dataType = "string",
107         allowableValues = Order.swaggerAllowableValues
108       ),
109       new ApiImplicitParam(
110         name = "limit",
111         paramType = "query",
112         dataType = "int",
113         allowableValues = "range[0, infinity]"
114       ),
115       new ApiImplicitParam(name = "skip", paramType = "query", dataType = "int", allowableValues = "range[0, infinity]")
116     )
117   )
118   @ApiResponses(
119     value =
120       Array(new ApiResponse(code = HttpCodes.OK, message = "Ok", response = classOf[ProposalsResultSeededResponse]))
121   )
122   @Path(value = "/{organisationId}/proposals")
123   def getOrganisationProposals: Route
124 
125   @ApiOperation(value = "get-organisation-votes", httpMethod = "GET", code = HttpCodes.OK)
126   @ApiImplicitParams(
127     value = Array(
128       new ApiImplicitParam(name = "organisationId", paramType = "path", dataType = "string"),
129       new ApiImplicitParam(
130         name = "votes",
131         paramType = "query",
132         dataType = "string",
133         allowableValues = VoteKey.swaggerAllowableValues,
134         allowMultiple = true
135       ),
136       new ApiImplicitParam(
137         name = "qualifications",
138         paramType = "query",
139         dataType = "string",
140         allowableValues = QualificationKey.swaggerAllowableValues,
141         allowMultiple = true
142       ),
143       new ApiImplicitParam(
144         name = "sort",
145         paramType = "query",
146         dataType = "string",
147         example = "createdAt",
148         allowableValues = ProposalElasticsearchFieldName.swaggerAllowableValues
149       ),
150       new ApiImplicitParam(
151         name = "order",
152         paramType = "query",
153         dataType = "string",
154         allowableValues = Order.swaggerAllowableValues
155       ),
156       new ApiImplicitParam(
157         name = "limit",
158         paramType = "query",
159         dataType = "int",
160         allowableValues = "range[0, infinity]"
161       ),
162       new ApiImplicitParam(name = "skip", paramType = "query", dataType = "int", allowableValues = "range[0, infinity]")
163     )
164   )
165   @ApiResponses(
166     value = Array(
167       new ApiResponse(
168         code = HttpCodes.OK,
169         message = "Ok",
170         response = classOf[ProposalsResultWithUserVoteSeededResponse]
171       )
172     )
173   )
174   @Path(value = "/{organisationId}/votes")
175   def getOrganisationVotes: Route
176 
177   @ApiOperation(
178     value = "update-organisation-profile",
179     httpMethod = "PUT",
180     authorizations = Array(
181       new Authorization(
182         value = "MakeApi",
183         scopes = Array(new AuthorizationScope(scope = "user", description = "application user"))
184       )
185     )
186   )
187   @ApiResponses(
188     value = Array(new ApiResponse(code = HttpCodes.OK, message = "Ok", response = classOf[OrganisationProfileResponse]))
189   )
190   @ApiImplicitParams(
191     value = Array(
192       new ApiImplicitParam(name = "organisationId", paramType = "path", dataType = "string"),
193       new ApiImplicitParam(
194         value = "body",
195         paramType = "body",
196         dataType = "org.make.api.organisation.OrganisationProfileRequest"
197       )
198     )
199   )
200   @Path(value = "/{organisationId}/profile")
201   def updateProfile: Route
202 
203   def routes: Route =
204     getOrganisation ~ getOrganisations ~ getOrganisationProposals ~ getOrganisationVotes ~ getOrganisationProfile ~ updateProfile
205 
206 }
207 
208 trait OrganisationApiComponent {
209   def organisationApi: OrganisationApi
210 }
211 
212 trait DefaultOrganisationApiComponent
213     extends OrganisationApiComponent
214     with MakeAuthenticationDirectives
215     with Logging
216     with ParameterExtractors {
217 
218   this: MakeDirectivesDependencies
219     with OrganisationServiceComponent
220     with ProposalServiceComponent
221     with QuestionServiceComponent
222     with OperationServiceComponent =>
223 
224   override lazy val organisationApi: OrganisationApi = new DefaultOrganisationApi
225 
226   class DefaultOrganisationApi extends OrganisationApi {
227     val organisationId: PathMatcher1[UserId] = Segment.map(id => UserId(id))
228 
229     override def getOrganisation: Route =
230       get {
231         path("organisations" / organisationId) { organisationId =>
232           makeOperation("GetOrganisation") { _ =>
233             organisationService.getOrganisation(organisationId).asDirectiveOrNotFound { user =>
234               complete(UserResponse(user))
235             }
236           }
237         }
238       }
239 
240     override def getOrganisationProfile: Route = {
241       get {
242         path("organisations" / organisationId / "profile") { organisationId =>
243           makeOperation("GetOrganisationProfile") { _ =>
244             organisationService.getOrganisation(organisationId).asDirectiveOrNotFound { organisation =>
245               complete(
246                 OrganisationProfileResponse(
247                   organisationName = organisation.organisationName,
248                   avatarUrl = organisation.profile.flatMap(_.avatarUrl),
249                   description = organisation.profile.flatMap(_.description),
250                   website = organisation.profile.flatMap(_.website),
251                   optInNewsletter = organisation.profile.forall(_.optInNewsletter),
252                   crmCountry = organisation.profile.map(_.crmCountry),
253                   crmLanguage = organisation.profile.map(_.crmLanguage)
254                 )
255               )
256             }
257           }
258         }
259       }
260     }
261 
262     override def getOrganisations: Route =
263       get {
264         path("organisations") {
265           makeOperation("GetOrganisations") { _ =>
266             parameters(
267               "organisationIds".as[Seq[UserId]].?,
268               "organisationName".as[String].?,
269               "slug".as[String].?,
270               "country".as[Country].?,
271               "language".as[Language].?
272             ) {
273               (
274                 organisationIds: Option[Seq[UserId]],
275                 organisationName: Option[String],
276                 slug: Option[String],
277                 country: Option[Country],
278                 language: Option[Language]
279               ) =>
280                 organisationService
281                   .search(organisationName, slug, organisationIds, country, language)
282                   .asDirective(
283                     results => complete(OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))
284                   )
285             }
286           }
287         }
288       }
289 
290     override def getOrganisationProposals: Route =
291       get {
292         path("organisations" / organisationId / "proposals") { organisationId =>
293           makeOperation("GetOrganisationProposals") { requestContext =>
294             optionalMakeOAuth2 { optionalUserAuth: Option[AuthInfo[UserRights]] =>
295               parameters(
296                 "preferredLanguage".as[Language].?,
297                 "sort".?,
298                 "order".as[Order].?,
299                 "limit".as[Pagination.Limit].?,
300                 "skip".as[Pagination.Offset].?
301               ) {
302                 (
303                   preferredLanguage: Option[Language],
304                   sort: Option[String],
305                   order: Option[Order],
306                   limit: Option[Pagination.Limit],
307                   offset: Option[Pagination.Offset]
308                 ) =>
309                   val defaultSort = Some("createdAt")
310                   val defaultOrder = Some(Order.desc)
311                   (
312                     organisationService.getOrganisation(organisationId).asDirectiveOrNotFound.void,
313                     proposalService
314                       .searchForUser(
315                         optionalUserAuth.map(_.user.userId),
316                         SearchQuery(
317                           filters = Some(
318                             SearchFilters(
319                               users = Some(UserSearchFilter(Seq(organisationId))),
320                               operationKinds = Some(OperationKindsSearchFilter(OperationKind.publicKinds))
321                             )
322                           ),
323                           excludes = optionalUserAuth.map(_.user.userId) match {
324                             case Some(userId) if userId == organisationId => None
325                             case _                                        => Some(SearchFilters(isAnonymous = Some(IsAnonymousSearchFiler(true))))
326                           },
327                           sort = Some(
328                             Sort(field = sort.orElse(defaultSort), mode = order.orElse(defaultOrder).map(_.sortOrder))
329                           ),
330                           limit = limit,
331                           offset = offset
332                         ),
333                         requestContext,
334                         preferredLanguage,
335                         None
336                       )
337                       .asDirective
338                   ).mapN((_, proposalsResponse) => proposalsResponse).apply(complete(_))
339               }
340             }
341           }
342         }
343       }
344 
345     override def getOrganisationVotes: Route =
346       get {
347         path("organisations" / organisationId / "votes") { organisationId =>
348           makeOperation("GetOrganisationVotes") { requestContext =>
349             optionalMakeOAuth2 { userAuth: Option[AuthInfo[UserRights]] =>
350               organisationService.getOrganisation(organisationId).asDirectiveOrNotFound { _ =>
351                 parameters(
352                   "votes".csv[VoteKey],
353                   "qualifications".csv[QualificationKey],
354                   "sort".?,
355                   "order".as[Order].?,
356                   "limit".as[Pagination.Limit].?,
357                   "skip".as[Pagination.Offset].?
358                 ) {
359                   (
360                     votes: Option[Seq[VoteKey]],
361                     qualifications: Option[Seq[QualificationKey]],
362                     sort: Option[String],
363                     order: Option[Order],
364                     limit: Option[Pagination.Limit],
365                     offset: Option[Pagination.Offset]
366                   ) =>
367                     val defaultSort = Some("createdAt")
368                     val defaultOrder = Some(Order.desc)
369                     onSuccess(
370                       organisationService.getVotedProposals(
371                         organisationId = organisationId,
372                         maybeUserId = userAuth.map(_.user.userId),
373                         filterVotes = votes,
374                         filterQualifications = qualifications,
375                         sort = Some(
376                           Sort(field = sort.orElse(defaultSort), mode = order.orElse(defaultOrder).map(_.sortOrder))
377                         ),
378                         limit = limit,
379                         offset = offset,
380                         requestContext = requestContext
381                       )
382                     ) { proposals =>
383                       complete(proposals)
384                     }
385                 }
386               }
387             }
388           }
389         }
390       }
391 
392     override def updateProfile: Route = {
393       put {
394         path("organisations" / organisationId / "profile") { organisationId =>
395           makeOperation("UpdateOrganisationProfile") { requestContext =>
396             makeOAuth2 { user =>
397               authorize(user.user.userId == organisationId) {
398                 decodeRequest {
399                   entity(as[OrganisationProfileRequest]) { request =>
400                     organisationService.getOrganisation(organisationId).asDirectiveOrNotFound { organisation =>
401                       val modifiedProfile = organisation.profile
402                         .orElse(Profile.parseProfile())
403                         .map(
404                           _.copy(
405                             avatarUrl = request.avatarUrl.map(_.value),
406                             description = request.description,
407                             website = request.website.map(_.value),
408                             optInNewsletter = request.optInNewsletter,
409                             crmCountry = request.crmCountry.getOrElse(Country("FR")),
410                             crmLanguage = request.crmLanguage.getOrElse(Language("fr"))
411                           )
412                         )
413 
414                       val modifiedOrganisation =
415                         organisation.copy(profile = modifiedProfile, organisationName = Some(request.organisationName))
416 
417                       organisationService
418                         .update(
419                           organisation = modifiedOrganisation,
420                           moderatorId = None,
421                           oldEmail = modifiedOrganisation.email,
422                           requestContext = requestContext
423                         )
424                         .asDirective { _ =>
425                           complete(
426                             OrganisationProfileResponse(
427                               organisationName = modifiedOrganisation.organisationName,
428                               avatarUrl = modifiedOrganisation.profile.flatMap(_.avatarUrl),
429                               description = modifiedOrganisation.profile.flatMap(_.description),
430                               website = modifiedOrganisation.profile.flatMap(_.website),
431                               optInNewsletter = modifiedOrganisation.profile.forall(_.optInNewsletter),
432                               crmCountry = modifiedOrganisation.profile.map(_.crmCountry),
433                               crmLanguage = modifiedOrganisation.profile.map(_.crmLanguage)
434                             )
435                           )
436                         }
437                     }
438                   }
439                 }
440               }
441             }
442           }
443         }
444       }
445     }
446   }
447 }
Line Stmt Id Pos Tree Symbol Tests Code
204 34947 7469 - 7530 Apply akka.http.scaladsl.server.RouteConcatenation.RouteWithConcatenation.~ org.make.api.organisation.organisationapitest OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this.getOrganisation).~(OrganisationApi.this.getOrganisations)).~(OrganisationApi.this.getOrganisationProposals)
204 33924 7487 - 7503 Select org.make.api.organisation.OrganisationApi.getOrganisations org.make.api.organisation.organisationapitest OrganisationApi.this.getOrganisations
204 36053 7556 - 7578 Select org.make.api.organisation.OrganisationApi.getOrganisationProfile org.make.api.organisation.organisationapitest OrganisationApi.this.getOrganisationProfile
204 50940 7469 - 7503 Apply akka.http.scaladsl.server.RouteConcatenation.RouteWithConcatenation.~ org.make.api.organisation.organisationapitest OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this.getOrganisation).~(OrganisationApi.this.getOrganisations)
204 42249 7581 - 7594 Select org.make.api.organisation.OrganisationApi.updateProfile org.make.api.organisation.organisationapitest OrganisationApi.this.updateProfile
204 33968 7469 - 7594 Apply akka.http.scaladsl.server.RouteConcatenation.RouteWithConcatenation.~ org.make.api.organisation.organisationapitest OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this.getOrganisation).~(OrganisationApi.this.getOrganisations)).~(OrganisationApi.this.getOrganisationProposals)).~(OrganisationApi.this.getOrganisationVotes)).~(OrganisationApi.this.getOrganisationProfile)).~(OrganisationApi.this.updateProfile)
204 42808 7506 - 7530 Select org.make.api.organisation.OrganisationApi.getOrganisationProposals org.make.api.organisation.organisationapitest OrganisationApi.this.getOrganisationProposals
204 49330 7469 - 7578 Apply akka.http.scaladsl.server.RouteConcatenation.RouteWithConcatenation.~ org.make.api.organisation.organisationapitest OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this.getOrganisation).~(OrganisationApi.this.getOrganisations)).~(OrganisationApi.this.getOrganisationProposals)).~(OrganisationApi.this.getOrganisationVotes)).~(OrganisationApi.this.getOrganisationProfile)
204 44165 7469 - 7553 Apply akka.http.scaladsl.server.RouteConcatenation.RouteWithConcatenation.~ org.make.api.organisation.organisationapitest OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this._enhanceRouteWithConcatenation(OrganisationApi.this.getOrganisation).~(OrganisationApi.this.getOrganisations)).~(OrganisationApi.this.getOrganisationProposals)).~(OrganisationApi.this.getOrganisationVotes)
204 41034 7469 - 7484 Select org.make.api.organisation.OrganisationApi.getOrganisation org.make.api.organisation.organisationapitest OrganisationApi.this.getOrganisation
204 48322 7533 - 7553 Select org.make.api.organisation.OrganisationApi.getOrganisationVotes org.make.api.organisation.organisationapitest OrganisationApi.this.getOrganisationVotes
227 50971 8203 - 8210 Select akka.http.scaladsl.server.PathMatchers.Segment org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.Segment
227 42567 8221 - 8231 Apply org.make.core.user.UserId.apply org.make.api.organisation.organisationapitest org.make.core.user.UserId.apply(id)
227 34981 8203 - 8232 Apply akka.http.scaladsl.server.PathMatcher.PathMatcher1Ops.map org.make.api.organisation.organisationapitest server.this.PathMatcher.PathMatcher1Ops[String](DefaultOrganisationApi.this.Segment).map[org.make.core.user.UserId](((id: String) => org.make.core.user.UserId.apply(id)))
230 48773 8282 - 8285 Select akka.http.scaladsl.server.directives.MethodDirectives.get org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.get
230 43105 8282 - 8587 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.get).apply(server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisation", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$1: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((user: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.user.UserResponse](org.make.api.user.UserResponse.apply(user))(marshalling.this.Marshaller.liftMarshaller[org.make.api.user.UserResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse])))))))))))
231 46952 8296 - 8579 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisation", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$1: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((user: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.user.UserResponse](org.make.api.user.UserResponse.apply(user))(marshalling.this.Marshaller.liftMarshaller[org.make.api.user.UserResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse]))))))))))
231 36090 8319 - 8333 Select org.make.api.organisation.DefaultOrganisationApiComponent.DefaultOrganisationApi.organisationId org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.organisationId
231 50190 8300 - 8300 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.UserId]
231 40985 8301 - 8333 ApplyToImplicitArgs akka.http.scaladsl.server.PathMatcher./ org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])
231 49101 8317 - 8317 TypeApply akka.http.scaladsl.server.util.TupleOps.Join.join0P org.make.api.organisation.organisationapitest TupleOps.this.Join.join0P[(org.make.core.user.UserId,)]
231 40487 8301 - 8316 Literal <nosymbol> org.make.api.organisation.organisationapitest "organisations"
231 33393 8296 - 8334 Apply akka.http.scaladsl.server.directives.PathDirectives.path org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)]))
232 47505 8365 - 8365 Select org.make.api.technical.MakeDirectives.makeOperation$default$3 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$3
232 42608 8379 - 8396 Literal <nosymbol> org.make.api.organisation.organisationapitest "GetOrganisation"
232 34748 8365 - 8365 Select org.make.api.technical.MakeDirectives.makeOperation$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$2
232 35843 8378 - 8378 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.RequestContext]
232 33178 8365 - 8569 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisation", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$1: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((user: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.user.UserResponse](org.make.api.user.UserResponse.apply(user))(marshalling.this.Marshaller.liftMarshaller[org.make.api.user.UserResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse]))))))))
232 39925 8365 - 8397 Apply org.make.api.technical.MakeDirectives.makeOperation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation("GetOrganisation", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3)
233 42083 8417 - 8557 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((user: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.user.UserResponse](org.make.api.user.UserResponse.apply(user))(marshalling.this.Marshaller.liftMarshaller[org.make.api.user.UserResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse]))))))
233 42044 8417 - 8490 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes.asDirectiveOrNotFound org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound
233 49133 8417 - 8468 Apply org.make.api.organisation.OrganisationService.getOrganisation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)
233 33139 8469 - 8469 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.User]
234 47544 8536 - 8536 ApplyToImplicitArgs de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse])
234 36583 8524 - 8542 ApplyToImplicitArgs akka.http.scaladsl.marshalling.ToResponseMarshallable.apply org.make.api.organisation.organisationapitest marshalling.this.ToResponseMarshallable.apply[org.make.api.user.UserResponse](org.make.api.user.UserResponse.apply(user))(marshalling.this.Marshaller.liftMarshaller[org.make.api.user.UserResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse])))
234 35554 8536 - 8536 TypeApply de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse]
234 50925 8524 - 8542 Apply org.make.api.user.UserResponse.apply org.make.api.organisation.organisationapitest org.make.api.user.UserResponse.apply(user)
234 48897 8515 - 8543 Apply akka.http.scaladsl.server.directives.RouteDirectives.complete org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.user.UserResponse](org.make.api.user.UserResponse.apply(user))(marshalling.this.Marshaller.liftMarshaller[org.make.api.user.UserResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse]))))
234 40439 8536 - 8536 ApplyToImplicitArgs akka.http.scaladsl.marshalling.LowPriorityToResponseMarshallerImplicits.liftMarshaller org.make.api.organisation.organisationapitest marshalling.this.Marshaller.liftMarshaller[org.make.api.user.UserResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.user.UserResponse](user.this.UserResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.user.UserResponse]))
234 42365 8536 - 8536 Select org.make.api.user.UserResponse.encoder org.make.api.organisation.organisationapitest user.this.UserResponse.encoder
241 41868 8646 - 9552 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.get).apply(server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$2: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(organisation.organisationName, organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl)), organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description)), organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website)), organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter)), organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry)), organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))))))))
241 35300 8646 - 8649 Select akka.http.scaladsl.server.directives.MethodDirectives.get org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.get
242 42119 8698 - 8698 TypeApply akka.http.scaladsl.server.util.TupleFoldInstances.t0 org.make.api.organisation.organisationapitest TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]
242 49987 8660 - 9544 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$2: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(organisation.organisationName, organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl)), organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description)), organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website)), organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter)), organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry)), organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))))))))))
242 42854 8660 - 8710 Apply akka.http.scaladsl.server.directives.PathDirectives.path org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])))
242 46993 8665 - 8709 ApplyToImplicitArgs akka.http.scaladsl.server.PathMatcher./ org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))
242 36352 8681 - 8681 TypeApply akka.http.scaladsl.server.util.TupleOps.Join.join0P org.make.api.organisation.organisationapitest TupleOps.this.Join.join0P[(org.make.core.user.UserId,)]
242 48607 8665 - 8680 Literal <nosymbol> org.make.api.organisation.organisationapitest "organisations"
242 40481 8683 - 8697 Select org.make.api.organisation.DefaultOrganisationApiComponent.DefaultOrganisationApi.organisationId org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.organisationId
242 49088 8700 - 8709 ApplyImplicitView akka.http.scaladsl.server.ImplicitPathMatcherConstruction._segmentStringToPathMatcher org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("profile")
242 33710 8698 - 8698 ApplyToImplicitArgs akka.http.scaladsl.server.util.TupleOps.LowLevelJoinImplicits.join org.make.api.organisation.organisationapitest TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])
242 34736 8664 - 8664 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.UserId]
243 32621 8741 - 9534 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$2: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(organisation.organisationName, organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl)), organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description)), organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website)), organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter)), organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry)), organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))))))))
243 41269 8754 - 8754 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.RequestContext]
243 49122 8741 - 8780 Apply org.make.api.technical.MakeDirectives.makeOperation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3)
243 36385 8741 - 8741 Select org.make.api.technical.MakeDirectives.makeOperation$default$3 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$3
243 40228 8741 - 8741 Select org.make.api.technical.MakeDirectives.makeOperation$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$2
243 48643 8755 - 8779 Literal <nosymbol> org.make.api.organisation.organisationapitest "GetOrganisationProfile"
244 40773 8800 - 9522 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(organisation.organisationName, organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl)), organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description)), organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website)), organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter)), organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry)), organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))))))
244 33756 8800 - 8851 Apply org.make.api.organisation.OrganisationService.getOrganisation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)
244 46747 8800 - 8873 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes.asDirectiveOrNotFound org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound
244 42356 8852 - 8852 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.User]
245 48360 8906 - 9508 Apply akka.http.scaladsl.server.directives.RouteDirectives.complete org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(organisation.organisationName, organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl)), organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description)), organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website)), organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter)), organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry)), organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))))
246 38429 8959 - 8959 ApplyToImplicitArgs akka.http.scaladsl.marshalling.LowPriorityToResponseMarshallerImplicits.liftMarshaller org.make.api.organisation.organisationapitest marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))
246 47248 8959 - 8959 ApplyToImplicitArgs de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])
246 48920 8932 - 9492 Apply org.make.api.organisation.OrganisationProfileResponse.apply org.make.api.organisation.organisationapitest OrganisationProfileResponse.apply(organisation.organisationName, organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl)), organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description)), organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website)), organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter)), organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry)), organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage)))
246 34573 8932 - 9492 ApplyToImplicitArgs akka.http.scaladsl.marshalling.ToResponseMarshallable.apply org.make.api.organisation.organisationapitest marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(organisation.organisationName, organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl)), organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description)), organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website)), organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter)), organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry)), organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))
246 41825 8959 - 8959 Select org.make.api.organisation.OrganisationProfileResponse.encoder org.make.api.organisation.organisationapitest organisation.this.OrganisationProfileResponse.encoder
246 34246 8959 - 8959 TypeApply de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]
247 34771 8998 - 9027 Select org.make.core.user.User.organisationName org.make.api.organisation.organisationapitest organisation.organisationName
248 40267 9059 - 9100 Apply scala.Option.flatMap org.make.api.organisation.organisationapitest organisation.profile.flatMap[String](((x$3: org.make.core.profile.Profile) => x$3.avatarUrl))
248 48565 9088 - 9099 Select org.make.core.profile.Profile.avatarUrl org.make.api.organisation.organisationapitest x$3.avatarUrl
249 32382 9163 - 9176 Select org.make.core.profile.Profile.description org.make.api.organisation.organisationapitest x$4.description
249 48886 9134 - 9177 Apply scala.Option.flatMap org.make.api.organisation.organisationapitest organisation.profile.flatMap[String](((x$4: org.make.core.profile.Profile) => x$4.description))
250 34209 9207 - 9246 Apply scala.Option.flatMap org.make.api.organisation.organisationapitest organisation.profile.flatMap[String](((x$5: org.make.core.profile.Profile) => x$5.website))
250 41304 9236 - 9245 Select org.make.core.profile.Profile.website org.make.api.organisation.organisationapitest x$5.website
251 42391 9284 - 9330 Apply scala.Option.forall org.make.api.organisation.organisationapitest organisation.profile.forall(((x$6: org.make.core.profile.Profile) => x$6.optInNewsletter))
251 46786 9312 - 9329 Select org.make.core.profile.Profile.optInNewsletter org.make.api.organisation.organisationapitest x$6.optInNewsletter
252 34535 9388 - 9400 Select org.make.core.profile.Profile.crmCountry org.make.api.organisation.organisationapitest x$7.crmCountry
252 48599 9363 - 9401 Apply scala.Option.map org.make.api.organisation.organisationapitest organisation.profile.map[org.make.core.reference.Country](((x$7: org.make.core.profile.Profile) => x$7.crmCountry))
253 40734 9460 - 9473 Select org.make.core.profile.Profile.crmLanguage org.make.api.organisation.organisationapitest x$8.crmLanguage
253 31883 9435 - 9474 Apply scala.Option.map org.make.api.organisation.organisationapitest organisation.profile.map[org.make.core.reference.Language](((x$8: org.make.core.profile.Profile) => x$8.crmLanguage))
263 34006 9609 - 9612 Select akka.http.scaladsl.server.directives.MethodDirectives.get org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.get
263 40302 9609 - 10542 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.get).apply(server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.path[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations"))).apply(server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisations", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$9: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[Seq[org.make.core.user.UserId]](DefaultOrganisationApi.this._string2NR("organisationIds").as[Seq[org.make.core.user.UserId]].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, Seq[org.make.core.user.UserId]](akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("organisationName").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("slug").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Country](DefaultOrganisationApi.this._string2NR("country").as[org.make.core.reference.Country].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Country](DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("language").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller))))(util.this.ApplyConverter.hac5[Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language]]).apply(((organisationIds: Option[Seq[org.make.core.user.UserId]], organisationName: Option[String], slug: Option[String], country: Option[org.make.core.reference.Country], language: Option[org.make.core.reference.Language]) => server.this.Directive.addDirectiveApply[(org.make.core.user.indexed.OrganisationSearchResult,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.indexed.OrganisationSearchResult](DefaultOrganisationApiComponent.this.organisationService.search(organisationName, slug, organisationIds, country, language)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.indexed.OrganisationSearchResult]).apply(((results: org.make.core.user.indexed.OrganisationSearchResult) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationsSearchResultResponse](OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse]))))))))))))
264 48184 9623 - 10534 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.path[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations"))).apply(server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisations", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$9: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[Seq[org.make.core.user.UserId]](DefaultOrganisationApi.this._string2NR("organisationIds").as[Seq[org.make.core.user.UserId]].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, Seq[org.make.core.user.UserId]](akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("organisationName").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("slug").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Country](DefaultOrganisationApi.this._string2NR("country").as[org.make.core.reference.Country].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Country](DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("language").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller))))(util.this.ApplyConverter.hac5[Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language]]).apply(((organisationIds: Option[Seq[org.make.core.user.UserId]], organisationName: Option[String], slug: Option[String], country: Option[org.make.core.reference.Country], language: Option[org.make.core.reference.Language]) => server.this.Directive.addDirectiveApply[(org.make.core.user.indexed.OrganisationSearchResult,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.indexed.OrganisationSearchResult](DefaultOrganisationApiComponent.this.organisationService.search(organisationName, slug, organisationIds, country, language)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.indexed.OrganisationSearchResult]).apply(((results: org.make.core.user.indexed.OrganisationSearchResult) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationsSearchResultResponse](OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse])))))))))))
264 39170 9623 - 9644 Apply akka.http.scaladsl.server.directives.PathDirectives.path org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.path[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations"))
264 46743 9628 - 9643 ApplyImplicitView akka.http.scaladsl.server.ImplicitPathMatcherConstruction._segmentStringToPathMatcher org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")
265 31682 9657 - 10524 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisations", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((x$9: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[Seq[org.make.core.user.UserId]](DefaultOrganisationApi.this._string2NR("organisationIds").as[Seq[org.make.core.user.UserId]].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, Seq[org.make.core.user.UserId]](akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("organisationName").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("slug").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Country](DefaultOrganisationApi.this._string2NR("country").as[org.make.core.reference.Country].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Country](DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("language").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller))))(util.this.ApplyConverter.hac5[Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language]]).apply(((organisationIds: Option[Seq[org.make.core.user.UserId]], organisationName: Option[String], slug: Option[String], country: Option[org.make.core.reference.Country], language: Option[org.make.core.reference.Language]) => server.this.Directive.addDirectiveApply[(org.make.core.user.indexed.OrganisationSearchResult,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.indexed.OrganisationSearchResult](DefaultOrganisationApiComponent.this.organisationService.search(organisationName, slug, organisationIds, country, language)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.indexed.OrganisationSearchResult]).apply(((results: org.make.core.user.indexed.OrganisationSearchResult) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationsSearchResultResponse](OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse]))))))))))
265 40811 9657 - 9657 Select org.make.api.technical.MakeDirectives.makeOperation$default$3 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$3
265 35634 9671 - 9689 Literal <nosymbol> org.make.api.organisation.organisationapitest "GetOrganisations"
265 49409 9670 - 9670 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.RequestContext]
265 48397 9657 - 9657 Select org.make.api.technical.MakeDirectives.makeOperation$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$2
265 32379 9657 - 9690 Apply org.make.api.technical.MakeDirectives.makeOperation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation("GetOrganisations", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3)
266 46010 9710 - 9947 Apply akka.http.scaladsl.server.directives.ParameterDirectivesInstances.parameters org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[Seq[org.make.core.user.UserId]](DefaultOrganisationApi.this._string2NR("organisationIds").as[Seq[org.make.core.user.UserId]].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, Seq[org.make.core.user.UserId]](akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("organisationName").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("slug").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Country](DefaultOrganisationApi.this._string2NR("country").as[org.make.core.reference.Country].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Country](DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("language").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)))
266 42150 9720 - 9720 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac5 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac5[Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language]]
267 48154 9736 - 9771 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[Seq[org.make.core.user.UserId]](DefaultOrganisationApi.this._string2NR("organisationIds").as[Seq[org.make.core.user.UserId]].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, Seq[org.make.core.user.UserId]](akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller)))
267 34044 9736 - 9771 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("organisationIds").as[Seq[org.make.core.user.UserId]].?
267 38933 9770 - 9770 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.PredefinedFromStringUnmarshallers.CsvSeq org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller)
267 41615 9736 - 9753 Literal <nosymbol> org.make.api.organisation.organisationapitest "organisationIds"
267 34521 9770 - 9770 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, Seq[org.make.core.user.UserId]](akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller))
267 46776 9770 - 9770 Select org.make.core.ParameterExtractors.userIdFromStringUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller
268 32420 9787 - 9818 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("organisationName").as[String].?
268 45459 9817 - 9817 TypeApply akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]
268 34085 9787 - 9818 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("organisationName").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]))
268 41059 9817 - 9817 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])
268 40021 9787 - 9805 Literal <nosymbol> org.make.api.organisation.organisationapitest "organisationName"
269 35590 9852 - 9852 TypeApply akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]
269 47582 9852 - 9852 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])
269 38969 9834 - 9853 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("slug").as[String].?
269 40057 9834 - 9853 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("slug").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]))
269 46543 9834 - 9840 Literal <nosymbol> org.make.api.organisation.organisationapitest "slug"
270 33996 9891 - 9891 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Country](DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller)
270 44942 9869 - 9892 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("country").as[org.make.core.reference.Country].?
270 46577 9869 - 9892 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Country](DefaultOrganisationApi.this._string2NR("country").as[org.make.core.reference.Country].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Country](DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller))
270 32174 9869 - 9878 Literal <nosymbol> org.make.api.organisation.organisationapitest "country"
270 41097 9891 - 9891 Select org.make.core.ParameterExtractors.countryFromStringUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller
271 47616 9932 - 9932 Select org.make.core.ParameterExtractors.languageFromStringUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller
271 40518 9932 - 9932 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)
271 38723 9908 - 9918 Literal <nosymbol> org.make.api.organisation.organisationapitest "language"
271 32215 9908 - 9933 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("language").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller))
271 35624 9908 - 9933 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("language").as[org.make.core.reference.Language].?
272 38678 9710 - 10512 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[Seq[org.make.core.user.UserId]](DefaultOrganisationApi.this._string2NR("organisationIds").as[Seq[org.make.core.user.UserId]].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, Seq[org.make.core.user.UserId]](akka.http.scaladsl.unmarshalling.Unmarshaller.CsvSeq[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.userIdFromStringUnmarshaller))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("organisationName").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("slug").as[String].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Country](DefaultOrganisationApi.this._string2NR("country").as[org.make.core.reference.Country].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Country](DefaultOrganisationApiComponent.this.countryFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("language").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller))))(util.this.ApplyConverter.hac5[Option[Seq[org.make.core.user.UserId]], Option[String], Option[String], Option[org.make.core.reference.Country], Option[org.make.core.reference.Language]]).apply(((organisationIds: Option[Seq[org.make.core.user.UserId]], organisationName: Option[String], slug: Option[String], country: Option[org.make.core.reference.Country], language: Option[org.make.core.reference.Language]) => server.this.Directive.addDirectiveApply[(org.make.core.user.indexed.OrganisationSearchResult,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.indexed.OrganisationSearchResult](DefaultOrganisationApiComponent.this.organisationService.search(organisationName, slug, organisationIds, country, language)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.indexed.OrganisationSearchResult]).apply(((results: org.make.core.user.indexed.OrganisationSearchResult) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationsSearchResultResponse](OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse]))))))))
281 34036 10228 - 10333 Apply org.make.api.organisation.OrganisationService.search org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.organisationService.search(organisationName, slug, organisationIds, country, language)
282 47031 10228 - 10364 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes.asDirective org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.indexed.OrganisationSearchResult](DefaultOrganisationApiComponent.this.organisationService.search(organisationName, slug, organisationIds, country, language)).asDirective
282 39521 10353 - 10353 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.indexed.OrganisationSearchResult]
282 47066 10228 - 10498 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.indexed.OrganisationSearchResult,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.indexed.OrganisationSearchResult](DefaultOrganisationApiComponent.this.organisationService.search(organisationName, slug, organisationIds, country, language)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.indexed.OrganisationSearchResult]).apply(((results: org.make.core.user.indexed.OrganisationSearchResult) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationsSearchResultResponse](OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse]))))))
283 40558 10468 - 10468 TypeApply de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse]
283 30607 10406 - 10477 Apply org.make.api.organisation.OrganisationsSearchResultResponse.fromOrganisationSearchResult org.make.api.organisation.organisationapitest OrganisationsSearchResultResponse.fromOrganisationSearchResult(results)
283 46050 10468 - 10468 ApplyToImplicitArgs akka.http.scaladsl.marshalling.LowPriorityToResponseMarshallerImplicits.liftMarshaller org.make.api.organisation.organisationapitest marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse]))
283 48143 10468 - 10468 Select org.make.api.organisation.OrganisationsSearchResultResponse.encoder org.make.api.organisation.organisationapitest organisation.this.OrganisationsSearchResultResponse.encoder
283 42186 10406 - 10477 ApplyToImplicitArgs akka.http.scaladsl.marshalling.ToResponseMarshallable.apply org.make.api.organisation.organisationapitest marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationsSearchResultResponse](OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse])))
283 33791 10397 - 10478 Apply akka.http.scaladsl.server.directives.RouteDirectives.complete org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationsSearchResultResponse](OrganisationsSearchResultResponse.fromOrganisationSearchResult(results))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationsSearchResultResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse]))))
283 32666 10468 - 10468 ApplyToImplicitArgs de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationsSearchResultResponse](organisation.this.OrganisationsSearchResultResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationsSearchResultResponse])
291 38084 10601 - 13063 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.get).apply(server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("proposals"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProposals", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((optionalUserAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac5[Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((preferredLanguage: Option[org.make.core.reference.Language], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultSeededResponse,)](cats.implicits.catsSyntaxTuple2Semigroupal[akka.http.scaladsl.server.Directive1, Unit, org.make.api.proposal.ProposalsResultSeededResponse](scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)).mapN[org.make.api.proposal.ProposalsResultSeededResponse](((x$13: Unit, proposalsResponse: org.make.api.proposal.ProposalsResultSeededResponse) => proposalsResponse))(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad, org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultSeededResponse]).apply(((x$14: org.make.api.proposal.ProposalsResultSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse])))))) })))))))))
291 32171 10601 - 10604 Select akka.http.scaladsl.server.directives.MethodDirectives.get org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.get
292 31108 10653 - 10653 ApplyToImplicitArgs akka.http.scaladsl.server.util.TupleOps.LowLevelJoinImplicits.join org.make.api.organisation.organisationapitest TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])
292 38719 10653 - 10653 TypeApply akka.http.scaladsl.server.util.TupleFoldInstances.t0 org.make.api.organisation.organisationapitest TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]
292 46823 10655 - 10666 ApplyImplicitView akka.http.scaladsl.server.ImplicitPathMatcherConstruction._segmentStringToPathMatcher org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("proposals")
292 47941 10620 - 10666 ApplyToImplicitArgs akka.http.scaladsl.server.PathMatcher./ org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("proposals"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))
292 38227 10638 - 10652 Select org.make.api.organisation.DefaultOrganisationApiComponent.DefaultOrganisationApi.organisationId org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.organisationId
292 33827 10636 - 10636 TypeApply akka.http.scaladsl.server.util.TupleOps.Join.join0P org.make.api.organisation.organisationapitest TupleOps.this.Join.join0P[(org.make.core.user.UserId,)]
292 41202 10615 - 13055 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("proposals"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProposals", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((optionalUserAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac5[Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((preferredLanguage: Option[org.make.core.reference.Language], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultSeededResponse,)](cats.implicits.catsSyntaxTuple2Semigroupal[akka.http.scaladsl.server.Directive1, Unit, org.make.api.proposal.ProposalsResultSeededResponse](scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)).mapN[org.make.api.proposal.ProposalsResultSeededResponse](((x$13: Unit, proposalsResponse: org.make.api.proposal.ProposalsResultSeededResponse) => proposalsResponse))(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad, org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultSeededResponse]).apply(((x$14: org.make.api.proposal.ProposalsResultSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse])))))) }))))))))
292 32206 10619 - 10619 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.UserId]
292 40343 10615 - 10667 Apply akka.http.scaladsl.server.directives.PathDirectives.path org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("proposals"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])))
292 45487 10620 - 10635 Literal <nosymbol> org.make.api.organisation.organisationapitest "organisations"
293 45235 10712 - 10738 Literal <nosymbol> org.make.api.organisation.organisationapitest "GetOrganisationProposals"
293 33574 10698 - 10698 Select org.make.api.technical.MakeDirectives.makeOperation$default$3 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$3
293 49059 10698 - 13045 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProposals", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((optionalUserAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac5[Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((preferredLanguage: Option[org.make.core.reference.Language], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultSeededResponse,)](cats.implicits.catsSyntaxTuple2Semigroupal[akka.http.scaladsl.server.Directive1, Unit, org.make.api.proposal.ProposalsResultSeededResponse](scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)).mapN[org.make.api.proposal.ProposalsResultSeededResponse](((x$13: Unit, proposalsResponse: org.make.api.proposal.ProposalsResultSeededResponse) => proposalsResponse))(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad, org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultSeededResponse]).apply(((x$14: org.make.api.proposal.ProposalsResultSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse])))))) }))))))
293 38753 10711 - 10711 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.RequestContext]
293 46334 10698 - 10739 Apply org.make.api.technical.MakeDirectives.makeOperation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationProposals", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3)
293 37126 10698 - 10698 Select org.make.api.technical.MakeDirectives.makeOperation$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$2
294 48666 10772 - 10772 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]
294 36478 10772 - 13033 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((optionalUserAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac5[Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((preferredLanguage: Option[org.make.core.reference.Language], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultSeededResponse,)](cats.implicits.catsSyntaxTuple2Semigroupal[akka.http.scaladsl.server.Directive1, Unit, org.make.api.proposal.ProposalsResultSeededResponse](scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)).mapN[org.make.api.proposal.ProposalsResultSeededResponse](((x$13: Unit, proposalsResponse: org.make.api.proposal.ProposalsResultSeededResponse) => proposalsResponse))(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad, org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultSeededResponse]).apply(((x$14: org.make.api.proposal.ProposalsResultSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse])))))) }))))
294 30858 10772 - 10790 Select org.make.api.technical.auth.MakeAuthentication.optionalMakeOAuth2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.optionalMakeOAuth2
295 44786 10867 - 10867 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac5 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac5[Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]
295 31468 10857 - 11094 Apply akka.http.scaladsl.server.directives.ParameterDirectivesInstances.parameters org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller)))
296 31965 10885 - 10919 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?
296 45273 10918 - 10918 Select org.make.core.ParameterExtractors.languageFromStringUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller
296 38182 10918 - 10918 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)
296 40096 10885 - 10904 Literal <nosymbol> org.make.api.organisation.organisationapitest "preferredLanguage"
296 34315 10885 - 10919 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller))
297 38506 10937 - 10945 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("sort").?
297 46371 10937 - 10943 Literal <nosymbol> org.make.api.organisation.organisationapitest "sort"
297 44708 10944 - 10944 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])
297 31677 10944 - 10944 TypeApply akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]
297 40292 10937 - 10945 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]))
298 31999 10963 - 10970 Literal <nosymbol> org.make.api.organisation.organisationapitest "order"
298 45028 10963 - 10982 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?
298 46813 10963 - 10982 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order]))))
298 38220 10981 - 10981 ApplyToImplicitArgs org.make.core.ParameterExtractors.enumeratumEnumUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order]))
298 34353 10981 - 10981 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))
299 38542 11000 - 11007 Literal <nosymbol> org.make.api.organisation.organisationapitest "limit"
299 31429 11000 - 11030 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?
299 40332 11029 - 11029 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)
299 44746 11029 - 11029 Select org.make.core.ParameterExtractors.limitFromIntUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller
299 32455 11000 - 11030 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller))
300 37974 11048 - 11078 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?
300 33563 11077 - 11077 Select org.make.core.ParameterExtractors.startFromIntUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.startFromIntUnmarshaller
300 45839 11048 - 11054 Literal <nosymbol> org.make.api.organisation.organisationapitest "skip"
300 39007 11048 - 11078 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))
300 46848 11077 - 11077 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller)
301 44572 10857 - 13019 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(ParameterDirectives.this.ParamSpec.forNOR[org.make.core.reference.Language](DefaultOrganisationApi.this._string2NR("preferredLanguage").as[org.make.core.reference.Language].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.reference.Language](DefaultOrganisationApiComponent.this.languageFromStringUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac5[Option[org.make.core.reference.Language], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((preferredLanguage: Option[org.make.core.reference.Language], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultSeededResponse,)](cats.implicits.catsSyntaxTuple2Semigroupal[akka.http.scaladsl.server.Directive1, Unit, org.make.api.proposal.ProposalsResultSeededResponse](scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)).mapN[org.make.api.proposal.ProposalsResultSeededResponse](((x$13: Unit, proposalsResponse: org.make.api.proposal.ProposalsResultSeededResponse) => proposalsResponse))(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad, org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultSeededResponse]).apply(((x$14: org.make.api.proposal.ProposalsResultSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse])))))) }))
309 40086 11410 - 11427 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[String]("createdAt")
310 44983 11465 - 11481 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc)
310 32496 11470 - 11480 Select org.make.core.Order.desc org.make.api.organisation.organisationapitest org.make.core.Order.desc
311 42491 11500 - 12934 Apply scala.Tuple2.apply org.make.api.organisation.organisationapitest scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)
312 38016 11522 - 11573 Apply org.make.api.organisation.OrganisationService.getOrganisation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)
312 50788 11522 - 11595 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes.asDirectiveOrNotFound org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound
312 46612 11574 - 11574 Select org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad
312 38498 11522 - 11600 Select cats.Functor.Ops.void org.make.api.organisation.organisationapitest cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void
314 38284 11622 - 12879 Apply org.make.api.proposal.ProposalService.searchForUser org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)
315 44002 11700 - 11735 Apply scala.Option.map org.make.api.organisation.organisationapitest optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId))
315 30606 11721 - 11734 Select org.make.core.auth.UserRights.userId x$10.user.userId
316 48985 11761 - 12742 Apply org.make.core.proposal.SearchQuery.apply org.make.api.organisation.organisationapitest org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7)
316 44083 11761 - 11761 Select org.make.core.proposal.SearchQuery.apply$default$6 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchQuery.apply$default$6
316 36522 11761 - 11761 Select org.make.core.proposal.SearchQuery.apply$default$7 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchQuery.apply$default$7
317 36193 11810 - 12106 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) })
318 46414 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$9 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$9
318 44736 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$3 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$3
318 38010 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$17 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$17
318 36694 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$24 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$24
318 32238 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$25 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$25
318 44296 11844 - 12078 Apply org.make.core.proposal.SearchFilters.apply org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31)
318 42666 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$29 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$29
318 32806 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$15 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$15
318 30676 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$11 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$11
318 45058 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$6 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$6
318 46604 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$19 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$19
318 31247 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$31 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$31
318 44537 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$23 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$23
318 46161 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$26 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$26
318 33062 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$5 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$5
318 37207 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$7 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$7
318 37766 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$27 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$27
318 51074 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$28 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$28
318 39599 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$10 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$10
318 30645 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$2 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$2
318 39635 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$20 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$20
318 44498 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$12 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$12
318 51035 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$18 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$18
318 36931 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$13 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$13
318 39560 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$1 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$1
318 36198 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$4 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$4
318 51280 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$8 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$8
318 38791 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$30 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$30
318 31760 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$21 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$21
318 46124 11844 - 11844 Select org.make.core.proposal.SearchFilters.apply$default$16 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$16
319 32247 11902 - 11939 Apply org.make.core.proposal.UserSearchFilter.apply org.make.api.organisation.organisationapitest org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))
319 40127 11919 - 11938 Apply scala.collection.SeqFactory.Delegate.apply org.make.api.organisation.organisationapitest scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId)
319 45021 11897 - 11940 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId)))
320 50543 11994 - 12047 Apply org.make.core.proposal.OperationKindsSearchFilter.apply org.make.api.organisation.organisationapitest org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)
320 46648 11989 - 12048 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds))
320 37448 12021 - 12046 Select org.make.core.operation.OperationKind.publicKinds org.make.api.organisation.organisationapitest org.make.core.operation.OperationKind.publicKinds
323 32276 12166 - 12179 Select org.make.core.auth.UserRights.userId x$11.user.userId
323 45312 12145 - 12180 Apply scala.Option.map org.make.api.organisation.organisationapitest optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId))
324 37800 12238 - 12262 Apply java.lang.Object.== userId.==(organisationId)
324 50829 12266 - 12270 Select scala.None scala.None
325 43238 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$27 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$27
325 43202 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$18 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$18
325 32032 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$4 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$4
325 36718 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$22 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$22
325 38261 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$6 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$6
325 38333 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$25 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$25
325 31712 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$1 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$1
325 42741 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$8 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$8
325 45878 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$14 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$14
325 31550 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$29 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$29
325 35982 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$12 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$12
325 39382 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$19 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$19
325 49263 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$13 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$13
325 44822 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$21 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$21
325 36487 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$31 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$31
325 44331 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$2 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$2
325 51063 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$16 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$16
325 44325 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$30 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$30
325 34833 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$28 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$28
325 36235 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$3 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$3
325 31507 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$20 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$20
325 31752 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$10 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$10
325 38825 12381 - 12415 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true))
325 44785 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$11 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$11
325 45057 12348 - 12417 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) })
325 38301 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$15 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$15
325 38579 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$9 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$9
325 49731 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$23 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$23
325 50826 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$26 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$26
325 45912 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$24 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$24
325 42700 12386 - 12414 Apply org.make.core.proposal.IsAnonymousSearchFiler.apply org.make.api.organisation.organisationapitest org.make.core.proposal.IsAnonymousSearchFiler.apply(true)
325 46112 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$5 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$5
325 50329 12353 - 12353 Select org.make.core.proposal.SearchFilters.apply$default$7 org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply$default$7
325 49219 12353 - 12416 Apply org.make.core.proposal.SearchFilters.apply org.make.api.organisation.organisationapitest org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62)
327 30966 12480 - 12632 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder))))
328 34869 12514 - 12604 Apply org.make.core.common.indexed.Sort.apply org.make.api.organisation.organisationapitest org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))
328 38095 12527 - 12551 Apply scala.Option.orElse org.make.api.organisation.organisationapitest sort.orElse[String](defaultSort)
328 50862 12591 - 12602 Select org.make.core.Order.sortOrder org.make.api.organisation.organisationapitest x$12.sortOrder
328 42999 12560 - 12603 Apply scala.Option.map org.make.api.organisation.organisationapitest order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder))
335 45095 12851 - 12855 Select scala.None org.make.api.organisation.organisationapitest scala.None
337 50624 11622 - 12914 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes.asDirective org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective
338 51354 13000 - 13000 ApplyToImplicitArgs akka.http.scaladsl.marshalling.LowPriorityToResponseMarshallerImplicits.liftMarshaller org.make.api.organisation.organisationapitest marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse]))
338 31535 11500 - 13003 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultSeededResponse,)](cats.implicits.catsSyntaxTuple2Semigroupal[akka.http.scaladsl.server.Directive1, Unit, org.make.api.proposal.ProposalsResultSeededResponse](scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)).mapN[org.make.api.proposal.ProposalsResultSeededResponse](((x$13: Unit, proposalsResponse: org.make.api.proposal.ProposalsResultSeededResponse) => proposalsResponse))(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad, org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultSeededResponse]).apply(((x$14: org.make.api.proposal.ProposalsResultSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse]))))))
338 49021 13000 - 13000 Select org.make.api.proposal.ProposalsResultSeededResponse.codec org.make.api.organisation.organisationapitest proposal.this.ProposalsResultSeededResponse.codec
338 34630 12939 - 12939 Select org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad
338 43548 13000 - 13001 ApplyToImplicitArgs akka.http.scaladsl.marshalling.ToResponseMarshallable.apply org.make.api.organisation.organisationapitest marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse])))
338 38048 13000 - 13000 ApplyToImplicitArgs de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse])
338 30712 12939 - 12939 Select org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad
338 41447 13000 - 13000 TypeApply de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse]
338 44811 11500 - 12984 ApplyToImplicitArgs cats.syntax.Tuple2SemigroupalOps.mapN org.make.api.organisation.organisationapitest cats.implicits.catsSyntaxTuple2Semigroupal[akka.http.scaladsl.server.Directive1, Unit, org.make.api.proposal.ProposalsResultSeededResponse](scala.Tuple2.apply[akka.http.scaladsl.server.Directive1[Unit], akka.http.scaladsl.server.Directive1[org.make.api.proposal.ProposalsResultSeededResponse]](cats.implicits.toFunctorOps[akka.http.scaladsl.server.Directive1, org.make.core.user.User](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad).void, org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.proposalService.searchForUser(optionalUserAuth.map[org.make.core.user.UserId](((x$10: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$10.user.userId)), org.make.core.proposal.SearchQuery.apply(scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$1: Some[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.UserSearchFilter](org.make.core.proposal.UserSearchFilter.apply(scala.`package`.Seq.apply[org.make.core.user.UserId](organisationId))); <artifact> val x$2: Some[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.OperationKindsSearchFilter](org.make.core.proposal.OperationKindsSearchFilter.apply(org.make.core.operation.OperationKind.publicKinds)); <artifact> val x$3: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$4: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$5: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$6: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$7: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$8: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$9: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$10: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$11: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$12: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$13: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$14: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$15: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$16: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$17: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$18: Option[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$17; <artifact> val x$19: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$20: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$21: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$22: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$23: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$24: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$25: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$26: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$27: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$28: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$29: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$30: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$31: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$3, x$4, x$5, x$6, x$7, x$8, x$9, x$10, x$11, x$12, x$13, x$14, x$15, x$1, x$16, x$17, x$18, x$19, x$20, x$21, x$22, x$2, x$23, x$24, x$25, x$26, x$27, x$28, x$29, x$30, x$31) }), optionalUserAuth.map[org.make.core.user.UserId](((x$11: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$11.user.userId)) match { case (value: org.make.core.user.UserId): Some[org.make.core.user.UserId]((userId @ _)) if userId.==(organisationId) => scala.None case _ => scala.Some.apply[org.make.core.proposal.SearchFilters]({ <artifact> val x$32: Some[org.make.core.proposal.IsAnonymousSearchFiler] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[org.make.core.proposal.IsAnonymousSearchFiler](org.make.core.proposal.IsAnonymousSearchFiler.apply(true)); <artifact> val x$33: Option[org.make.core.proposal.ProposalSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$1; <artifact> val x$34: Option[org.make.core.proposal.InitialProposalFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$2; <artifact> val x$35: Option[org.make.core.proposal.TagsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$3; <artifact> val x$36: Option[org.make.core.proposal.LabelsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$4; <artifact> val x$37: Option[org.make.core.proposal.OperationSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$5; <artifact> val x$38: Option[org.make.core.proposal.QuestionSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$6; <artifact> val x$39: Option[org.make.core.proposal.ContentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$7; <artifact> val x$40: Option[org.make.core.proposal.StatusSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$8; <artifact> val x$41: Option[org.make.core.proposal.ContextSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$9; <artifact> val x$42: Option[org.make.core.proposal.SlugSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$10; <artifact> val x$43: Option[org.make.core.proposal.IdeaSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$11; <artifact> val x$44: Option[cats.data.NonEmptyList[org.make.core.proposal.LanguageSearchFilter]] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$12; <artifact> val x$45: Option[org.make.core.proposal.CountrySearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$13; <artifact> val x$46: Option[org.make.core.proposal.UserSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$14; <artifact> val x$47: Option[org.make.core.proposal.MinVotesCountSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$15; <artifact> val x$48: Option[org.make.core.proposal.ToEnrichSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$16; <artifact> val x$49: Option[org.make.core.proposal.MinScoreSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$18; <artifact> val x$50: Option[org.make.core.proposal.CreatedAtSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$19; <artifact> val x$51: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$20; <artifact> val x$52: Option[org.make.core.proposal.SequencePoolSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$21; <artifact> val x$53: Option[org.make.core.proposal.OperationKindsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$22; <artifact> val x$54: Option[org.make.core.proposal.QuestionIsOpenSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$23; <artifact> val x$55: Option[org.make.core.proposal.SegmentSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$24; <artifact> val x$56: Option[org.make.core.proposal.UserTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$25; <artifact> val x$57: Option[org.make.core.proposal.ProposalTypesSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$26; <artifact> val x$58: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$27; <artifact> val x$59: Option[org.make.core.proposal.ZoneSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$28; <artifact> val x$60: Option[org.make.core.proposal.MinScoreLowerBoundSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$29; <artifact> val x$61: Option[org.make.core.proposal.KeywordsSearchFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$30; <artifact> val x$62: Option[org.make.core.proposal.SubmittedAsLanguagesFilter] @scala.reflect.internal.annotations.uncheckedBounds = org.make.core.proposal.SearchFilters.apply$default$31; org.make.core.proposal.SearchFilters.apply(x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$44, x$45, x$46, x$47, x$48, x$32, x$49, x$50, x$51, x$52, x$53, x$54, x$55, x$56, x$57, x$58, x$59, x$60, x$61, x$62) }) }, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$12: org.make.core.Order) => x$12.sortOrder)))), limit, offset, org.make.core.proposal.SearchQuery.apply$default$6, org.make.core.proposal.SearchQuery.apply$default$7), requestContext, preferredLanguage, scala.None)).asDirective)).mapN[org.make.api.proposal.ProposalsResultSeededResponse](((x$13: Unit, proposalsResponse: org.make.api.proposal.ProposalsResultSeededResponse) => proposalsResponse))(org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad, org.make.api.technical.directives.FutureDirectivesExtensions.directive1Monad)
338 34667 12991 - 13002 Apply akka.http.scaladsl.server.directives.RouteDirectives.complete org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultSeededResponse](x$14)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultSeededResponse](proposal.this.ProposalsResultSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultSeededResponse]))))
338 36282 12939 - 12939 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultSeededResponse]
346 51109 13118 - 13121 Select akka.http.scaladsl.server.directives.MethodDirectives.get org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.get
346 35837 13118 - 15056 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.get).apply(server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("votes"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationVotes", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((userAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((x$15: org.make.core.user.User) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))), org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac6[Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((votes: Option[Seq[org.make.core.proposal.VoteKey]], qualifications: Option[Seq[org.make.core.proposal.QualificationKey]], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse,)](DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]).apply(((proposals: org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))))) })))))))))))
347 44607 13172 - 13179 ApplyImplicitView akka.http.scaladsl.server.ImplicitPathMatcherConstruction._segmentStringToPathMatcher org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("votes")
347 37836 13132 - 13180 Apply akka.http.scaladsl.server.directives.PathDirectives.path org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("votes"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])))
347 31287 13153 - 13153 TypeApply akka.http.scaladsl.server.util.TupleOps.Join.join0P org.make.api.organisation.organisationapitest TupleOps.this.Join.join0P[(org.make.core.user.UserId,)]
347 50615 13136 - 13136 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.UserId]
347 34708 13155 - 13169 Select org.make.api.organisation.DefaultOrganisationApiComponent.DefaultOrganisationApi.organisationId org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.organisationId
347 42005 13137 - 13179 ApplyToImplicitArgs akka.http.scaladsl.server.PathMatcher./ org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("votes"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))
347 49505 13170 - 13170 ApplyToImplicitArgs akka.http.scaladsl.server.util.TupleOps.LowLevelJoinImplicits.join org.make.api.organisation.organisationapitest TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])
347 42990 13137 - 13152 Literal <nosymbol> org.make.api.organisation.organisationapitest "organisations"
347 36234 13170 - 13170 TypeApply akka.http.scaladsl.server.util.TupleFoldInstances.t0 org.make.api.organisation.organisationapitest TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]
347 40947 13132 - 15048 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("votes"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationVotes", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((userAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((x$15: org.make.core.user.User) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))), org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac6[Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((votes: Option[Seq[org.make.core.proposal.VoteKey]], qualifications: Option[Seq[org.make.core.proposal.QualificationKey]], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse,)](DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]).apply(((proposals: org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))))) }))))))))))
348 35157 13211 - 13211 Select org.make.api.technical.MakeDirectives.makeOperation$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$2
348 43025 13225 - 13247 Literal <nosymbol> org.make.api.organisation.organisationapitest "GetOrganisationVotes"
348 36272 13224 - 13224 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.RequestContext]
348 44367 13211 - 13248 Apply org.make.api.technical.MakeDirectives.makeOperation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationVotes", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3)
348 48530 13211 - 13211 Select org.make.api.technical.MakeDirectives.makeOperation$default$3 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$3
348 47501 13211 - 15038 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("GetOrganisationVotes", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((userAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((x$15: org.make.core.user.User) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))), org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac6[Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((votes: Option[Seq[org.make.core.proposal.VoteKey]], qualifications: Option[Seq[org.make.core.proposal.QualificationKey]], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse,)](DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]).apply(((proposals: org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))))) }))))))))
349 49541 13281 - 13299 Select org.make.api.technical.auth.MakeAuthentication.optionalMakeOAuth2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.optionalMakeOAuth2
349 41160 13281 - 13281 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]
349 34742 13281 - 15026 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]],)](DefaultOrganisationApiComponent.this.optionalMakeOAuth2)(util.this.ApplyConverter.hac1[Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]]).apply(((userAuth: Option[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((x$15: org.make.core.user.User) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))), org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac6[Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((votes: Option[Seq[org.make.core.proposal.VoteKey]], qualifications: Option[Seq[org.make.core.proposal.QualificationKey]], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse,)](DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]).apply(((proposals: org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))))) }))))))
350 42777 13410 - 13410 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.User]
350 42328 13358 - 15012 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((x$15: org.make.core.user.User) => server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))), org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac6[Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((votes: Option[Seq[org.make.core.proposal.VoteKey]], qualifications: Option[Seq[org.make.core.proposal.QualificationKey]], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse,)](DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]).apply(((proposals: org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))))) }))))
350 37872 13358 - 13409 Apply org.make.api.organisation.OrganisationService.getOrganisation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)
350 50652 13358 - 13431 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes.asDirectiveOrNotFound org.make.api.organisation.organisationapitest org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound
351 47508 13455 - 13748 Apply akka.http.scaladsl.server.directives.ParameterDirectivesInstances.parameters org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.parameters(org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))), org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller)))
351 40694 13465 - 13465 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac6 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac6[Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]
352 34661 13485 - 13492 Literal <nosymbol> org.make.api.organisation.organisationapitest "votes"
352 44403 13496 - 13496 ApplyToImplicitArgs org.make.core.ParameterExtractors.enumeratumStringEnumUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))
352 47678 13485 - 13505 TypeApply org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps.csv org.make.api.organisation.organisationapitest org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey]
352 36309 13485 - 13505 ApplyToImplicitArgs org.make.api.technical.CsvReceptacle.paramSpec org.make.api.organisation.organisationapitest org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey])))
353 50403 13525 - 13563 ApplyToImplicitArgs org.make.api.technical.CsvReceptacle.paramSpec org.make.api.organisation.organisationapitest org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey])))
353 49298 13525 - 13541 Literal <nosymbol> org.make.api.organisation.organisationapitest "qualifications"
353 33319 13545 - 13545 ApplyToImplicitArgs org.make.core.ParameterExtractors.enumeratumStringEnumUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))
353 41196 13525 - 13563 TypeApply org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps.csv org.make.api.organisation.organisationapitest org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey]
354 44592 13590 - 13590 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])
354 47717 13590 - 13590 TypeApply akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]
354 42812 13583 - 13589 Literal <nosymbol> org.make.api.organisation.organisationapitest "sort"
354 36059 13583 - 13591 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String]))
354 35729 13583 - 13591 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("sort").?
355 42251 13611 - 13630 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?
355 51133 13629 - 13629 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))
355 42572 13611 - 13630 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order]))))
355 48816 13611 - 13618 Literal <nosymbol> org.make.api.organisation.organisationapitest "order"
355 33357 13629 - 13629 ApplyToImplicitArgs org.make.core.ParameterExtractors.enumeratumEnumUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order]))
356 44359 13679 - 13679 Select org.make.core.ParameterExtractors.limitFromIntUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller
356 48776 13650 - 13680 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?
356 36789 13679 - 13679 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)
356 34458 13650 - 13657 Literal <nosymbol> org.make.api.organisation.organisationapitest "limit"
356 49865 13650 - 13680 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller))
357 40988 13700 - 13706 Literal <nosymbol> org.make.api.organisation.organisationapitest "skip"
357 50896 13729 - 13729 Select org.make.core.ParameterExtractors.startFromIntUnmarshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.startFromIntUnmarshaller
357 34169 13700 - 13730 Select akka.http.scaladsl.common.NameReceptacle.? org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?
357 35515 13700 - 13730 ApplyToImplicitArgs akka.http.scaladsl.server.directives.ParameterDirectives.ParamSpec.forNOR org.make.api.organisation.organisationapitest ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))
357 42764 13729 - 13729 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.sourceOptionUnmarshaller org.make.api.organisation.organisationapitest akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller)
358 46997 13455 - 14996 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset])](DefaultOrganisationApi.this.parameters(org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.VoteKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("votes").csv[org.make.core.proposal.VoteKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.VoteKey]((VoteKey: enumeratum.values.StringEnum[org.make.core.proposal.VoteKey]))), org.make.api.technical.CsvReceptacle.paramSpec[org.make.core.proposal.QualificationKey](org.make.api.technical.CsvReceptacle.RepeatedCsvFlatteningParamOps("qualifications").csv[org.make.core.proposal.QualificationKey])(DefaultOrganisationApiComponent.this.enumeratumStringEnumUnmarshaller[org.make.core.proposal.QualificationKey]((QualificationKey: enumeratum.values.StringEnum[org.make.core.proposal.QualificationKey]))), ParameterDirectives.this.ParamSpec.forNOR[String](DefaultOrganisationApi.this._string2NR("sort").?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, String](akka.http.scaladsl.unmarshalling.Unmarshaller.identityUnmarshaller[String])), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.Order](DefaultOrganisationApi.this._string2NR("order").as[org.make.core.Order].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.Order](DefaultOrganisationApiComponent.this.enumeratumEnumUnmarshaller[org.make.core.Order]((Order: enumeratum.Enum[org.make.core.Order])))), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Limit](DefaultOrganisationApi.this._string2NR("limit").as[org.make.core.technical.Pagination.Limit].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Limit](DefaultOrganisationApiComponent.this.limitFromIntUnmarshaller)), ParameterDirectives.this.ParamSpec.forNOR[org.make.core.technical.Pagination.Offset](DefaultOrganisationApi.this._string2NR("skip").as[org.make.core.technical.Pagination.Offset].?)(akka.http.scaladsl.unmarshalling.Unmarshaller.sourceOptionUnmarshaller[String, org.make.core.technical.Pagination.Offset](DefaultOrganisationApiComponent.this.startFromIntUnmarshaller))))(util.this.ApplyConverter.hac6[Option[Seq[org.make.core.proposal.VoteKey]], Option[Seq[org.make.core.proposal.QualificationKey]], Option[String], Option[org.make.core.Order], Option[org.make.core.technical.Pagination.Limit], Option[org.make.core.technical.Pagination.Offset]]).apply(((votes: Option[Seq[org.make.core.proposal.VoteKey]], qualifications: Option[Seq[org.make.core.proposal.QualificationKey]], sort: Option[String], order: Option[org.make.core.Order], limit: Option[org.make.core.technical.Pagination.Limit], offset: Option[org.make.core.technical.Pagination.Offset]) => { val defaultSort: Some[String] = scala.Some.apply[String]("createdAt"); val defaultOrder: Some[org.make.core.Order.desc.type] = scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc); server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse,)](DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]).apply(((proposals: org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))))) }))
367 36558 14139 - 14156 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[String]("createdAt")
368 41030 14196 - 14212 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.Order.desc.type](org.make.core.Order.desc)
368 49290 14201 - 14211 Select org.make.core.Order.desc org.make.api.organisation.organisationapitest org.make.core.Order.desc
369 42561 14242 - 14242 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]
369 50697 14233 - 14899 Apply akka.http.scaladsl.server.directives.FutureDirectives.onSuccess org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]))
370 33965 14266 - 14877 ApplyToImplicitArgs akka.http.scaladsl.server.directives.OnSuccessMagnet.apply org.make.api.organisation.organisationapitest directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])
370 41477 14303 - 14303 TypeApply akka.http.scaladsl.server.util.LowerPriorityTupler.forAnyRef org.make.api.organisation.organisationapitest util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]
370 49058 14266 - 14877 Apply org.make.api.organisation.OrganisationService.getVotedProposals org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext)
372 50931 14400 - 14427 Apply scala.Option.map org.make.api.organisation.organisationapitest userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId))
372 33923 14413 - 14426 Select org.make.core.auth.UserRights.userId x$16.user.userId
375 36048 14568 - 14716 Apply scala.Some.apply org.make.api.organisation.organisationapitest scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder))))
376 40440 14600 - 14690 Apply org.make.core.common.indexed.Sort.apply org.make.api.organisation.organisationapitest org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))
376 34940 14677 - 14688 Select org.make.core.Order.sortOrder org.make.api.organisation.organisationapitest x$17.sortOrder
376 48319 14646 - 14689 Apply scala.Option.map org.make.api.organisation.organisationapitest order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder))
376 42526 14613 - 14637 Apply scala.Option.orElse org.make.api.organisation.organisationapitest sort.orElse[String](defaultSort)
382 34415 14233 - 14978 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse,)](DefaultOrganisationApi.this.onSuccess(directives.this.OnSuccessMagnet.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.organisationService.getVotedProposals(organisationId, userAuth.map[org.make.core.user.UserId](((x$16: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => x$16.user.userId)), votes, qualifications, scala.Some.apply[org.make.core.common.indexed.Sort](org.make.core.common.indexed.Sort.apply(sort.orElse[String](defaultSort), order.orElse[org.make.core.Order](defaultOrder).map[com.sksamuel.elastic4s.requests.searches.sort.SortOrder](((x$17: org.make.core.Order) => x$17.sortOrder)))), limit, offset, requestContext))(util.this.Tupler.forAnyRef[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))(util.this.ApplyConverter.hac1[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]).apply(((proposals: org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]))))))
383 35800 14946 - 14946 ApplyToImplicitArgs akka.http.scaladsl.marshalling.LowPriorityToResponseMarshallerImplicits.liftMarshaller org.make.api.organisation.organisationapitest marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]))
383 34977 14946 - 14946 Select org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse.codec org.make.api.organisation.organisationapitest proposal.this.ProposalsResultWithUserVoteSeededResponse.codec
383 48769 14946 - 14946 TypeApply de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]
383 49094 14946 - 14955 ApplyToImplicitArgs akka.http.scaladsl.marshalling.ToResponseMarshallable.apply org.make.api.organisation.organisationapitest marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])))
383 40484 14946 - 14946 ApplyToImplicitArgs de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse])
383 40980 14937 - 14956 Apply akka.http.scaladsl.server.directives.RouteDirectives.complete org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposals)(marshalling.this.Marshaller.liftMarshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse](proposal.this.ProposalsResultWithUserVoteSeededResponse.codec, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.proposal.ProposalsResultWithUserVoteSeededResponse]))))
393 46571 15106 - 17758 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.put).apply(server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("UpdateOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights],)](DefaultOrganisationApiComponent.this.makeOAuth2)(util.this.ApplyConverter.hac1[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]).apply(((user: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.authorize(user.user.userId.==(organisationId))).apply(server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.decodeRequest).apply(server.this.Directive.addDirectiveApply[(org.make.api.organisation.OrganisationProfileRequest,)](DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))))(util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]).apply(((request: org.make.api.organisation.OrganisationProfileRequest) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) })))))))))))))
393 49128 15106 - 15109 Select akka.http.scaladsl.server.directives.MethodDirectives.put org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.put
394 48890 15124 - 15124 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.user.UserId]
394 46907 15141 - 15141 TypeApply akka.http.scaladsl.server.util.TupleOps.Join.join0P org.make.api.organisation.organisationapitest TupleOps.this.Join.join0P[(org.make.core.user.UserId,)]
394 32842 15120 - 15170 Apply akka.http.scaladsl.server.directives.PathDirectives.path org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])))
394 42041 15125 - 15140 Literal <nosymbol> org.make.api.organisation.organisationapitest "organisations"
394 39675 15125 - 15169 ApplyToImplicitArgs akka.http.scaladsl.server.PathMatcher./ org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))
394 48566 15158 - 15158 ApplyToImplicitArgs akka.http.scaladsl.server.util.TupleOps.LowLevelJoinImplicits.join org.make.api.organisation.organisationapitest TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type])
394 35547 15158 - 15158 TypeApply akka.http.scaladsl.server.util.TupleFoldInstances.t0 org.make.api.organisation.organisationapitest TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]
394 51284 15120 - 17750 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.path[(org.make.core.user.UserId,)](DefaultOrganisationApi.this._segmentStringToPathMatcher("organisations")./[(org.make.core.user.UserId,)](DefaultOrganisationApi.this.organisationId)(TupleOps.this.Join.join0P[(org.make.core.user.UserId,)])./[Unit](DefaultOrganisationApi.this._segmentStringToPathMatcher("profile"))(TupleOps.this.Join.join[(org.make.core.user.UserId,), Unit](TupleOps.this.FoldLeft.t0[(org.make.core.user.UserId,), akka.http.scaladsl.server.util.TupleOps.Join.Fold.type]))))(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((organisationId: org.make.core.user.UserId) => server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("UpdateOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights],)](DefaultOrganisationApiComponent.this.makeOAuth2)(util.this.ApplyConverter.hac1[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]).apply(((user: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.authorize(user.user.userId.==(organisationId))).apply(server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.decodeRequest).apply(server.this.Directive.addDirectiveApply[(org.make.api.organisation.OrganisationProfileRequest,)](DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))))(util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]).apply(((request: org.make.api.organisation.OrganisationProfileRequest) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) }))))))))))))
394 33134 15143 - 15157 Select org.make.api.organisation.DefaultOrganisationApiComponent.DefaultOrganisationApi.organisationId org.make.api.organisation.organisationapitest DefaultOrganisationApi.this.organisationId
394 42359 15160 - 15169 ApplyImplicitView akka.http.scaladsl.server.ImplicitPathMatcherConstruction._segmentStringToPathMatcher org.make.api.organisation.organisationapitest DefaultOrganisationApi.this._segmentStringToPathMatcher("profile")
395 34212 15201 - 15201 Select org.make.api.technical.MakeDirectives.makeOperation$default$2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$2
395 46949 15201 - 15201 Select org.make.api.technical.MakeDirectives.makeOperation$default$3 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation$default$3
395 42080 15215 - 15242 Literal <nosymbol> org.make.api.organisation.organisationapitest "UpdateOrganisationProfile"
395 43099 15201 - 15243 Apply org.make.api.technical.MakeDirectives.makeOperation org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOperation("UpdateOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3)
395 35296 15214 - 15214 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[org.make.core.RequestContext]
395 37972 15201 - 17740 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(org.make.core.RequestContext,)](DefaultOrganisationApiComponent.this.makeOperation("UpdateOrganisationProfile", DefaultOrganisationApiComponent.this.makeOperation$default$2, DefaultOrganisationApiComponent.this.makeOperation$default$3))(util.this.ApplyConverter.hac1[org.make.core.RequestContext]).apply(((requestContext: org.make.core.RequestContext) => server.this.Directive.addDirectiveApply[(scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights],)](DefaultOrganisationApiComponent.this.makeOAuth2)(util.this.ApplyConverter.hac1[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]).apply(((user: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.authorize(user.user.userId.==(organisationId))).apply(server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.decodeRequest).apply(server.this.Directive.addDirectiveApply[(org.make.api.organisation.OrganisationProfileRequest,)](DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))))(util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]).apply(((request: org.make.api.organisation.OrganisationProfileRequest) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) }))))))))))
396 45217 15276 - 17728 Apply scala.Function1.apply org.make.api.organisation.organisationapitest server.this.Directive.addDirectiveApply[(scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights],)](DefaultOrganisationApiComponent.this.makeOAuth2)(util.this.ApplyConverter.hac1[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]).apply(((user: scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]) => server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.authorize(user.user.userId.==(organisationId))).apply(server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.decodeRequest).apply(server.this.Directive.addDirectiveApply[(org.make.api.organisation.OrganisationProfileRequest,)](DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))))(util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]).apply(((request: org.make.api.organisation.OrganisationProfileRequest) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) }))))))))
396 40187 15276 - 15276 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 org.make.api.organisation.organisationapitest util.this.ApplyConverter.hac1[scalaoauth2.provider.AuthInfo[org.make.core.auth.UserRights]]
396 48604 15276 - 15286 Select org.make.api.technical.auth.MakeAuthentication.makeOAuth2 org.make.api.organisation.organisationapitest DefaultOrganisationApiComponent.this.makeOAuth2
397 49081 15311 - 15356 Apply akka.http.scaladsl.server.directives.SecurityDirectives.authorize DefaultOrganisationApi.this.authorize(user.user.userId.==(organisationId))
397 32450 15311 - 17714 Apply scala.Function1.apply server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.authorize(user.user.userId.==(organisationId))).apply(server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.decodeRequest).apply(server.this.Directive.addDirectiveApply[(org.make.api.organisation.OrganisationProfileRequest,)](DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))))(util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]).apply(((request: org.make.api.organisation.OrganisationProfileRequest) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) }))))))
397 32589 15321 - 15355 Apply java.lang.Object.== user.user.userId.==(organisationId)
398 41830 15375 - 15388 Select akka.http.scaladsl.server.directives.CodingDirectives.decodeRequest DefaultOrganisationApi.this.decodeRequest
398 40050 15375 - 17698 Apply scala.Function1.apply server.this.Directive.addByNameNullaryApply(DefaultOrganisationApi.this.decodeRequest).apply(server.this.Directive.addDirectiveApply[(org.make.api.organisation.OrganisationProfileRequest,)](DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))))(util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]).apply(((request: org.make.api.organisation.OrganisationProfileRequest) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) })))))
399 34250 15418 - 15418 Select org.make.api.organisation.OrganisationProfileRequest.decoder organisation.this.OrganisationProfileRequest.decoder
399 44741 15409 - 17680 Apply scala.Function1.apply server.this.Directive.addDirectiveApply[(org.make.api.organisation.OrganisationProfileRequest,)](DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))))(util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]).apply(((request: org.make.api.organisation.OrganisationProfileRequest) => server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) }))))
399 46987 15418 - 15418 ApplyToImplicitArgs de.heikoseeberger.akkahttpcirce.ErrorAccumulatingUnmarshaller.unmarshaller DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)
399 48362 15409 - 15447 Apply akka.http.scaladsl.server.directives.MarshallingDirectives.entity DefaultOrganisationApi.this.entity[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder))))
399 40227 15415 - 15415 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 util.this.ApplyConverter.hac1[org.make.api.organisation.OrganisationProfileRequest]
399 42850 15418 - 15418 ApplyToImplicitArgs akka.http.scaladsl.unmarshalling.LowerPriorityGenericUnmarshallers.messageUnmarshallerFromEntityUnmarshaller akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder))
399 34730 15416 - 15446 ApplyToImplicitArgs akka.http.scaladsl.server.directives.MarshallingDirectives.as DefaultOrganisationApi.this.as[org.make.api.organisation.OrganisationProfileRequest](akka.http.scaladsl.unmarshalling.Unmarshaller.messageUnmarshallerFromEntityUnmarshaller[org.make.api.organisation.OrganisationProfileRequest](DefaultOrganisationApiComponent.this.unmarshaller[org.make.api.organisation.OrganisationProfileRequest](organisation.this.OrganisationProfileRequest.decoder)))
400 31427 15481 - 17660 Apply scala.Function1.apply server.this.Directive.addDirectiveApply[(org.make.core.user.User,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound)(util.this.ApplyConverter.hac1[org.make.core.user.User]).apply(((organisation: org.make.core.user.User) => { val modifiedProfile: Option[org.make.core.profile.Profile] = organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) })); val modifiedOrganisation: org.make.core.user.User = { <artifact> val x$25: Option[org.make.core.profile.Profile] @scala.reflect.internal.annotations.uncheckedBounds = modifiedProfile; <artifact> val x$26: Some[String] @scala.reflect.internal.annotations.uncheckedBounds = scala.Some.apply[String](request.organisationName); <artifact> val x$27: org.make.core.user.UserId = organisation.copy$default$1; <artifact> val x$28: String = organisation.copy$default$2; <artifact> val x$29: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$3; <artifact> val x$30: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$4; <artifact> val x$31: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$5; <artifact> val x$32: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$6; <artifact> val x$33: Boolean = organisation.copy$default$7; <artifact> val x$34: Boolean = organisation.copy$default$8; <artifact> val x$35: org.make.core.user.UserType = organisation.copy$default$9; <artifact> val x$36: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$10; <artifact> val x$37: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$11; <artifact> val x$38: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$12; <artifact> val x$39: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$13; <artifact> val x$40: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$14; <artifact> val x$41: Seq[org.make.core.user.Role] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$15; <artifact> val x$42: org.make.core.reference.Country = organisation.copy$default$16; <artifact> val x$43: org.make.core.reference.Language = organisation.copy$default$17; <artifact> val x$44: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$19; <artifact> val x$45: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$20; <artifact> val x$46: Boolean = organisation.copy$default$21; <artifact> val x$47: Option[org.make.core.user.MailingErrorLog] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$22; <artifact> val x$48: Boolean = organisation.copy$default$24; <artifact> val x$49: Seq[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$25; <artifact> val x$50: Seq[org.make.core.EventId] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$26; <artifact> val x$51: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$27; <artifact> val x$52: Int = organisation.copy$default$28; <artifact> val x$53: Option[java.time.ZonedDateTime] @scala.reflect.internal.annotations.uncheckedBounds = organisation.copy$default$29; organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53) }; server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))))) }))
400 41263 15533 - 15533 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 util.this.ApplyConverter.hac1[org.make.core.user.User]
400 32626 15481 - 15532 Apply org.make.api.organisation.OrganisationService.getOrganisation DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)
400 48846 15481 - 15554 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes.asDirectiveOrNotFound org.make.api.technical.directives.FutureDirectivesExtensions.FutureOptionWithRoutes[org.make.core.user.User](DefaultOrganisationApiComponent.this.organisationService.getOrganisation(organisationId)).asDirectiveOrNotFound
402 38638 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$3 org.make.core.profile.Profile.parseProfile$default$3
402 40767 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$24 org.make.core.profile.Profile.parseProfile$default$24
402 47795 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$5 org.make.core.profile.Profile.parseProfile$default$5
402 46781 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$11 org.make.core.profile.Profile.parseProfile$default$11
402 49948 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$17 org.make.core.profile.Profile.parseProfile$default$17
402 32339 15670 - 15692 Apply org.make.core.profile.Profile.parseProfile org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)
402 48593 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$14 org.make.core.profile.Profile.parseProfile$default$14
402 34492 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$4 org.make.core.profile.Profile.parseProfile$default$4
402 34205 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$10 org.make.core.profile.Profile.parseProfile$default$10
402 34241 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$19 org.make.core.profile.Profile.parseProfile$default$19
402 41029 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$9 org.make.core.profile.Profile.parseProfile$default$9
402 46744 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$2 org.make.core.profile.Profile.parseProfile$default$2
402 32425 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$16 org.make.core.profile.Profile.parseProfile$default$16
402 32380 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$7 org.make.core.profile.Profile.parseProfile$default$7
402 34527 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$13 org.make.core.profile.Profile.parseProfile$default$13
402 38385 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$12 org.make.core.profile.Profile.parseProfile$default$12
402 35595 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$22 org.make.core.profile.Profile.parseProfile$default$22
402 48353 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$23 org.make.core.profile.Profile.parseProfile$default$23
402 40263 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$6 org.make.core.profile.Profile.parseProfile$default$6
402 47243 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$20 org.make.core.profile.Profile.parseProfile$default$20
402 40729 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$15 org.make.core.profile.Profile.parseProfile$default$15
402 41064 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$18 org.make.core.profile.Profile.parseProfile$default$18
402 38426 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$21 org.make.core.profile.Profile.parseProfile$default$21
402 48878 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$8 org.make.core.profile.Profile.parseProfile$default$8
402 33752 15678 - 15678 Select org.make.core.profile.Profile.parseProfile$default$1 org.make.core.profile.Profile.parseProfile$default$1
403 33208 15617 - 16259 Apply scala.Option.map organisation.profile.orElse[org.make.core.profile.Profile](org.make.core.profile.Profile.parseProfile(org.make.core.profile.Profile.parseProfile$default$1, org.make.core.profile.Profile.parseProfile$default$2, org.make.core.profile.Profile.parseProfile$default$3, org.make.core.profile.Profile.parseProfile$default$4, org.make.core.profile.Profile.parseProfile$default$5, org.make.core.profile.Profile.parseProfile$default$6, org.make.core.profile.Profile.parseProfile$default$7, org.make.core.profile.Profile.parseProfile$default$8, org.make.core.profile.Profile.parseProfile$default$9, org.make.core.profile.Profile.parseProfile$default$10, org.make.core.profile.Profile.parseProfile$default$11, org.make.core.profile.Profile.parseProfile$default$12, org.make.core.profile.Profile.parseProfile$default$13, org.make.core.profile.Profile.parseProfile$default$14, org.make.core.profile.Profile.parseProfile$default$15, org.make.core.profile.Profile.parseProfile$default$16, org.make.core.profile.Profile.parseProfile$default$17, org.make.core.profile.Profile.parseProfile$default$18, org.make.core.profile.Profile.parseProfile$default$19, org.make.core.profile.Profile.parseProfile$default$20, org.make.core.profile.Profile.parseProfile$default$21, org.make.core.profile.Profile.parseProfile$default$22, org.make.core.profile.Profile.parseProfile$default$23, org.make.core.profile.Profile.parseProfile$default$24)).map[org.make.core.profile.Profile](((x$18: org.make.core.profile.Profile) => { <artifact> val x$1: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value)); <artifact> val x$2: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.description; <artifact> val x$3: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value)); <artifact> val x$4: Boolean = request.optInNewsletter; <artifact> val x$5: org.make.core.reference.Country = request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR")); <artifact> val x$6: org.make.core.reference.Language = request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr")); <artifact> val x$7: Option[java.time.LocalDate] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$1; <artifact> val x$8: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$3; <artifact> val x$9: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$4; <artifact> val x$10: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$6; <artifact> val x$11: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$7; <artifact> val x$12: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$8; <artifact> val x$13: Option[Map[org.make.core.operation.OperationId,org.make.core.user.OidcInfo]] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$9; <artifact> val x$14: Option[org.make.core.profile.Gender] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$10; <artifact> val x$15: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$11; <artifact> val x$16: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$12; <artifact> val x$17: Option[Int] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$13; <artifact> val x$18: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$14; <artifact> val x$19: Option[org.make.core.profile.SocioProfessionalCategory] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$18; <artifact> val x$20: Option[org.make.core.question.QuestionId] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$19; <artifact> val x$21: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$20; <artifact> val x$22: Option[String] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$21; <artifact> val x$23: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$23; <artifact> val x$24: Option[Boolean] @scala.reflect.internal.annotations.uncheckedBounds = x$18.copy$default$24; x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24) }))
404 48148 15752 - 15752 Select org.make.core.profile.Profile.copy$default$8 x$18.copy$default$8
404 33793 15752 - 15752 Select org.make.core.profile.Profile.copy$default$13 x$18.copy$default$13
404 47574 15752 - 15752 Select org.make.core.profile.Profile.copy$default$20 x$18.copy$default$20
404 42113 15750 - 16233 Apply org.make.core.profile.Profile.copy x$18.copy(x$7, x$1, x$8, x$9, x$2, x$10, x$11, x$12, x$13, x$14, x$15, x$16, x$17, x$18, x$5, x$6, x$4, x$19, x$20, x$21, x$22, x$3, x$23, x$24)
404 32172 15752 - 15752 Select org.make.core.profile.Profile.copy$default$23 x$18.copy$default$23
404 34041 15752 - 15752 Select org.make.core.profile.Profile.copy$default$3 x$18.copy$default$3
404 30769 15752 - 15752 Select org.make.core.profile.Profile.copy$default$7 x$18.copy$default$7
404 38963 15752 - 15752 Select org.make.core.profile.Profile.copy$default$18 x$18.copy$default$18
404 46541 15752 - 15752 Select org.make.core.profile.Profile.copy$default$14 x$18.copy$default$14
404 41053 15752 - 15752 Select org.make.core.profile.Profile.copy$default$12 x$18.copy$default$12
404 44938 15752 - 15752 Select org.make.core.profile.Profile.copy$default$24 x$18.copy$default$24
404 45455 15752 - 15752 Select org.make.core.profile.Profile.copy$default$11 x$18.copy$default$11
404 38929 15752 - 15752 Select org.make.core.profile.Profile.copy$default$6 x$18.copy$default$6
404 40562 15752 - 15752 Select org.make.core.profile.Profile.copy$default$9 x$18.copy$default$9
404 46504 15752 - 15752 Select org.make.core.profile.Profile.copy$default$4 x$18.copy$default$4
404 30525 15752 - 15752 Select org.make.core.profile.Profile.copy$default$19 x$18.copy$default$19
404 39769 15752 - 15752 Select org.make.core.profile.Profile.copy$default$21 x$18.copy$default$21
404 32137 15752 - 15752 Select org.make.core.profile.Profile.copy$default$10 x$18.copy$default$10
404 41611 15752 - 15752 Select org.make.core.profile.Profile.copy$default$1 x$18.copy$default$1
405 41862 15798 - 15828 Apply scala.Option.map request.avatarUrl.map[String](((x$19: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$19.value))
405 44944 15820 - 15827 Select eu.timepit.refined.api.Refined.value x$19.value
406 34000 15872 - 15891 Select org.make.api.organisation.OrganisationProfileRequest.description request.description
407 38886 15931 - 15959 Apply scala.Option.map request.website.map[String](((x$20: eu.timepit.refined.api.Refined[String,eu.timepit.refined.string.Url]) => x$20.value))
407 47282 15951 - 15958 Select eu.timepit.refined.api.Refined.value x$20.value
408 35628 16007 - 16030 Select org.make.api.organisation.OrganisationProfileRequest.optInNewsletter request.optInNewsletter
409 48392 16102 - 16115 Apply org.make.core.reference.Country.apply org.make.core.reference.Country.apply("FR")
409 40520 16073 - 16116 Apply scala.Option.getOrElse request.crmCountry.getOrElse[org.make.core.reference.Country](org.make.core.reference.Country.apply("FR"))
410 32375 16190 - 16204 Apply org.make.core.reference.Language.apply org.make.core.reference.Language.apply("fr")
410 45701 16160 - 16205 Apply scala.Option.getOrElse request.crmLanguage.getOrElse[org.make.core.reference.Language](org.make.core.reference.Language.apply("fr"))
415 31640 16347 - 16347 Select org.make.core.user.User.copy$default$10 organisation.copy$default$10
415 47897 16347 - 16347 Select org.make.core.user.User.copy$default$21 organisation.copy$default$21
415 37131 16347 - 16347 Select org.make.core.user.User.copy$default$6 organisation.copy$default$6
415 40513 16347 - 16347 Select org.make.core.user.User.copy$default$3 organisation.copy$default$3
415 30566 16347 - 16347 Select org.make.core.user.User.copy$default$1 organisation.copy$default$1
415 33751 16347 - 16347 Select org.make.core.user.User.copy$default$7 organisation.copy$default$7
415 45193 16347 - 16347 Select org.make.core.user.User.copy$default$25 organisation.copy$default$25
415 32698 16347 - 16347 Select org.make.core.user.User.copy$default$24 organisation.copy$default$24
415 30814 16334 - 16429 Apply org.make.core.user.User.copy organisation.copy(x$27, x$28, x$29, x$30, x$31, x$32, x$33, x$34, x$35, x$36, x$37, x$38, x$39, x$40, x$41, x$42, x$43, x$25, x$44, x$45, x$46, x$47, x$26, x$48, x$49, x$50, x$51, x$52, x$53)
415 47026 16347 - 16347 Select org.make.core.user.User.copy$default$8 organisation.copy$default$8
415 38183 16347 - 16347 Select org.make.core.user.User.copy$default$15 organisation.copy$default$15
415 46009 16347 - 16347 Select org.make.core.user.User.copy$default$5 organisation.copy$default$5
415 38224 16347 - 16347 Select org.make.core.user.User.copy$default$26 organisation.copy$default$26
415 39516 16347 - 16347 Select org.make.core.user.User.copy$default$9 organisation.copy$default$9
415 48670 16347 - 16347 Select org.make.core.user.User.copy$default$11 organisation.copy$default$11
415 32210 16347 - 16347 Select org.make.core.user.User.copy$default$4 organisation.copy$default$4
415 46816 16347 - 16347 Select org.make.core.user.User.copy$default$28 organisation.copy$default$28
415 48637 16347 - 16347 Select org.make.core.user.User.copy$default$2 organisation.copy$default$2
415 40296 16347 - 16347 Select org.make.core.user.User.copy$default$22 organisation.copy$default$22
415 32661 16347 - 16347 Select org.make.core.user.User.copy$default$13 organisation.copy$default$13
415 47061 16347 - 16347 Select org.make.core.user.User.copy$default$17 organisation.copy$default$17
415 46047 16347 - 16347 Select org.make.core.user.User.copy$default$14 organisation.copy$default$14
415 38720 16398 - 16428 Apply scala.Some.apply scala.Some.apply[String](request.organisationName)
415 38675 16347 - 16347 Select org.make.core.user.User.copy$default$19 organisation.copy$default$19
415 40550 16347 - 16347 Select org.make.core.user.User.copy$default$12 organisation.copy$default$12
415 38714 16347 - 16347 Select org.make.core.user.User.copy$default$29 organisation.copy$default$29
415 46295 16403 - 16427 Select org.make.api.organisation.OrganisationProfileRequest.organisationName request.organisationName
415 33821 16347 - 16347 Select org.make.core.user.User.copy$default$27 organisation.copy$default$27
415 33785 16347 - 16347 Select org.make.core.user.User.copy$default$16 organisation.copy$default$16
415 31679 16347 - 16347 Select org.make.core.user.User.copy$default$20 organisation.copy$default$20
418 31921 16453 - 16763 Apply org.make.api.organisation.OrganisationService.update DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)
420 44214 16609 - 16613 Select scala.None scala.None
421 40337 16652 - 16678 Select org.make.core.user.User.email modifiedOrganisation.email
424 37120 16789 - 16789 TypeApply akka.http.scaladsl.server.util.ApplyConverterInstances.hac1 util.this.ApplyConverter.hac1[org.make.core.user.UserId]
424 38962 16453 - 17638 Apply scala.Function1.apply server.this.Directive.addDirectiveApply[(org.make.core.user.UserId,)](org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective)(util.this.ApplyConverter.hac1[org.make.core.user.UserId]).apply(((x$21: org.make.core.user.UserId) => DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))))))
424 45230 16453 - 16800 Select org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes.asDirective org.make.api.technical.directives.FutureDirectivesExtensions.FutureWithRoutes[org.make.core.user.UserId](DefaultOrganisationApiComponent.this.organisationService.update(modifiedOrganisation, scala.None, modifiedOrganisation.email, requestContext)).asDirective
425 46807 16834 - 17612 Apply akka.http.scaladsl.server.directives.RouteDirectives.complete DefaultOrganisationApi.this.complete(marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))))
426 51246 16872 - 17584 ApplyToImplicitArgs akka.http.scaladsl.marshalling.ToResponseMarshallable.apply marshalling.this.ToResponseMarshallable.apply[org.make.api.organisation.OrganisationProfileResponse](OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))))(marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])))
426 38215 16899 - 16899 ApplyToImplicitArgs akka.http.scaladsl.marshalling.LowPriorityToResponseMarshallerImplicits.liftMarshaller marshalling.this.Marshaller.liftMarshaller[org.make.api.organisation.OrganisationProfileResponse](DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]))
426 44704 16872 - 17584 Apply org.make.api.organisation.OrganisationProfileResponse.apply OrganisationProfileResponse.apply(modifiedOrganisation.organisationName, modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl)), modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description)), modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website)), modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter)), modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry)), modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage)))
426 40843 16899 - 16899 Select org.make.api.organisation.OrganisationProfileResponse.encoder organisation.this.OrganisationProfileResponse.encoder
426 45024 16899 - 16899 ApplyToImplicitArgs de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller DefaultOrganisationApiComponent.this.marshaller[org.make.api.organisation.OrganisationProfileResponse](organisation.this.OrganisationProfileResponse.encoder, DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse])
426 32412 16899 - 16899 TypeApply de.heikoseeberger.akkahttpcirce.BaseCirceSupport.marshaller$default$2 DefaultOrganisationApiComponent.this.marshaller$default$2[org.make.api.organisation.OrganisationProfileResponse]
427 33568 16950 - 16987 Select org.make.core.user.User.organisationName modifiedOrganisation.organisationName
428 38464 17031 - 17080 Apply scala.Option.flatMap modifiedOrganisation.profile.flatMap[String](((x$22: org.make.core.profile.Profile) => x$22.avatarUrl))
428 46854 17068 - 17079 Select org.make.core.profile.Profile.avatarUrl x$22.avatarUrl
429 30853 17163 - 17176 Select org.make.core.profile.Profile.description x$23.description
429 43646 17126 - 17177 Apply scala.Option.flatMap modifiedOrganisation.profile.flatMap[String](((x$23: org.make.core.profile.Profile) => x$23.description))
430 40090 17256 - 17265 Select org.make.core.profile.Profile.website x$24.website
430 31961 17219 - 17266 Apply scala.Option.flatMap modifiedOrganisation.profile.flatMap[String](((x$24: org.make.core.profile.Profile) => x$24.website))
431 44984 17352 - 17369 Select org.make.core.profile.Profile.optInNewsletter x$25.optInNewsletter
431 38180 17316 - 17370 Apply scala.Option.forall modifiedOrganisation.profile.forall(((x$25: org.make.core.profile.Profile) => x$25.optInNewsletter))
432 50185 17448 - 17460 Select org.make.core.profile.Profile.crmCountry x$26.crmCountry
432 47385 17415 - 17461 Apply scala.Option.map modifiedOrganisation.profile.map[org.make.core.reference.Country](((x$26: org.make.core.profile.Profile) => x$26.crmCountry))
433 38503 17540 - 17553 Select org.make.core.profile.Profile.crmLanguage x$27.crmLanguage
433 31674 17507 - 17554 Apply scala.Option.map modifiedOrganisation.profile.map[org.make.core.reference.Language](((x$27: org.make.core.profile.Profile) => x$27.crmLanguage))