Skip to content

v0.135.0

Compare
Choose a tag to compare
@danielafeitosa danielafeitosa released this 22 Oct 19:12
· 93 commits to develop since this release
  • Channels feature: the items created store the information about how the item was submitted to Check. Currently the channels can be MANUAL (via app), FETCH (via Fetch bot), BROWSER_EXTENSION (via Check Mark extension), API (via CheckAPI), ZAPIER (via Zapier) or TIPLINE (via WhatsApp, Messenger, Twitter, Telegram, Viber or Line)
    • About type: added new field channels of type JsonStringType to return the list of channels available
    • createProjectMedia mutation: added the input field channel of type Integer to set the channel the item was submitted by. The mapping between the channel and its code is defined on ChannelCodes
    • ➕ New migration to add channel to project_medias table and add elasticsearch mapping. The migration should run very fast during docker-compose up
    • ➕ New task to set the channel of existing items and index the field channel on ElasticSearch. To run the task: bundle exec rake check:migrate:add_channel_to_project_medias
  • Privacy settings feature: folders and content inside them can be configured to be visible by (I) only admins (II) admins and editors (III) all users with access to the team
    • updateProject mutation: added the input field privacy of type Integer to set the code related to the permitted users. The mapping between the group with access and its code is defined on PrivacySettings
    • ➕ New migration to add privacy to projects table. The migration should run very fast during docker-compose up
  • Conditional annotation feature: display a metadata based on other metadata answers
    • TeamTask type: added new field is_child of type Boolean to identify when a team task is displayed to users based on other metadata's response
    • createTeamTask and updateTeamTask mutations: added the input field is_child of type Boolean to identify if the metadata e dependent of other metadata
    • ➕ New migration to add is_child to team_tasks table. The migration should run very fast during docker-compose up
  • Identical media items identification feature: improve filter for identical media items (image, video and audio) submitted to Check
    • ➕ New task to identify and merge identical uploaded files (image, video and audio). To run the task: bundle exec rake check:migrate:fix_identical_uploaded_file
    • ➕ New task to delete medias not associated with any project media. To run the task: bundle exec rake check:migrate:delete_orphaned_medias