markMemberAsTester

@Modifying(clearAutomatically = true)
@Query(value = "INSERT INTO " + PROJECT_TESTERS_TABLE + " (" + PROJECT_IDENTIFIER_KEY + "," + MEMBER_IDENTIFIER_KEY + " )" + " VALUES (" + ":" + PROJECT_IDENTIFIER_KEY + "," + ":" + MEMBER_IDENTIFIER_KEY + ")", nativeQuery = true)
abstract fun markMemberAsTester(@Param(value = "project_id") projectId: String, @Param(value = "member_id") memberId: String)

Method to execute the query to mark a member as Tester

Parameters

projectId

: the identifier of the project

memberId

: the identifier of the member to mark as tester