Skip to content

Commit

Permalink
Updated submodules to v0.123.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caiosba committed Dec 23, 2020
1 parent a59d53e commit 53e4339
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion check-api
Submodule check-api updated 52 files
+1 −1 .travis.yml
+1 −0 Dockerfile
+18 −16 Gemfile
+232 −227 Gemfile.lock
+12 −0 app/graph/mutations/graphql_crud_operations.rb
+3 −2 app/graph/mutations/project_media_mutations.rb
+1 −1 app/graph/mutations/team_mutations.rb
+3 −5 app/graph/types/public_team_type.rb
+2 −0 app/graph/types/team_type.rb
+19 −27 app/models/bot/smooch.rb
+5 −0 app/models/concerns/project_association.rb
+25 −4 app/models/concerns/project_media_bulk.rb
+39 −18 app/models/concerns/project_media_cached_fields.rb
+9 −10 app/models/concerns/project_media_private.rb
+45 −6 app/models/concerns/smooch_messages.rb
+5 −0 app/models/concerns/team_private.rb
+14 −1 app/models/project_media.rb
+2 −0 app/models/relationship.rb
+41 −3 app/models/team.rb
+8 −0 app/repositories/media_search.rb
+48 −45 config/locales/ar.yml
+23 −23 config/locales/bn.yml
+58 −54 config/locales/en.yml
+69 −67 config/locales/es.yml
+41 −38 config/locales/fil.yml
+69 −66 config/locales/fr.yml
+23 −23 config/locales/hi.yml
+19 −19 config/locales/ml.yml
+56 −53 config/locales/pt.yml
+57 −52 config/locales/ro.yml
+47 −44 config/locales/ru.yml
+66 −64 config/locales/sw.yml
+19 −19 config/locales/te.yml
+11 −0 db/migrate/20201207042158_add_request_type_and_resource_to_smooch.rb
+34 −0 db/migrate/20201218010536_add_mapping_for_new_columns2.rb
+1 −1 db/schema.rb
+2 −2 lib/check_basic_abilities.rb
+8 −1 lib/check_permissions.rb
+3 −2 lib/check_search.rb
+39 −0 lib/tasks/migrate/20201218010536_add_mapping_for_new_columns2.rake
+33 −0 lib/tasks/migrate/20201221050629_remove_project_media_projects_from_trashed_unconfirmed_items.rake
+1 −1 production/Dockerfile
+1 −1 public/relay.json
+12 −0 test/controllers/elastic_search_7_test.rb
+5 −0 test/controllers/graphql_controller_3_test.rb
+44 −21 test/controllers/graphql_controller_4_test.rb
+1 −1 test/models/ability_test.rb
+29 −5 test/models/bot/smooch_3_test.rb
+82 −18 test/models/project_media_test.rb
+19 −18 test/models/project_test.rb
+16 −11 test/models/team_test.rb
+6 −1 test/test_helper.rb
2 changes: 1 addition & 1 deletion check-web
Submodule check-web updated 75 files
+1 −0 .travis.yml
+4 −0 localization/react-intl/src/app/components/DrawerNavigationComponent.json
+1 −1 localization/react-intl/src/app/components/LoginContainer.json
+1 −1 localization/react-intl/src/app/components/UserConfirmed.json
+36 −22 localization/react-intl/src/app/components/media/BulkActions.json
+1 −5 localization/react-intl/src/app/components/media/MediaActionsBar.json
+0 −4 localization/react-intl/src/app/components/media/MediaActionsMenuButton.json
+4 −0 localization/react-intl/src/app/components/media/MediaTypeDisplayName.json
+1 −9 localization/react-intl/src/app/components/media/ReportDesigner.json
+30 −0 localization/react-intl/src/app/components/media/RestoreConfirmProjectMediaToProjectAction.json
+0 −8 localization/react-intl/src/app/components/media/Similarity/MediaItem.json
+2 −2 localization/react-intl/src/app/components/project/ProjectAssignment.json
+0 −6 localization/react-intl/src/app/components/search/SearchQuery.json
+5 −5 localization/react-intl/src/app/components/search/SearchQueryComponent.json
+16 −0 localization/react-intl/src/app/components/search/SearchResultsTable/index.json
+1 −1 localization/react-intl/src/app/components/team/SmoochBot/SmoochBotMultiTextEditor.json
+6 −6 localization/react-intl/src/app/components/team/SmoochBot/localizables.json
+6 −0 localization/react-intl/src/app/components/team/Unconfirmed.json
+1 −1 localization/react-intl/src/app/globalStrings.json
+84 −67 localization/transifex/Web.json
+1 −1 localization/translations/ar.json
+92 −75 localization/translations/ar/Web.json
+84 −67 localization/translations/bn/Web.json
+1 −1 localization/translations/es.json
+84 −67 localization/translations/es/Web.json
+1 −1 localization/translations/fil.json
+104 −87 localization/translations/fil/Web.json
+1 −1 localization/translations/fr.json
+93 −76 localization/translations/fr/Web.json
+84 −67 localization/translations/hi/Web.json
+84 −67 localization/translations/ml/Web.json
+1 −1 localization/translations/pt.json
+101 −84 localization/translations/pt/Web.json
+1 −1 localization/translations/ro.json
+114 −97 localization/translations/ro/Web.json
+1 −1 localization/translations/ru.json
+105 −88 localization/translations/ru/Web.json
+1 −1 localization/translations/sw.json
+83 −66 localization/translations/sw/Web.json
+84 −67 localization/translations/te/Web.json
+37 −17 src/app/components/DrawerNavigationComponent.js
+1 −1 src/app/components/LoginContainer.js
+2 −0 src/app/components/Root.js
+1 −1 src/app/components/UserConfirmed.js
+236 −150 src/app/components/media/BulkActions.js
+17 −37 src/app/components/media/MediaActionsBar.js
+0 −16 src/app/components/media/MediaActionsMenuButton.js
+5 −1 src/app/components/media/MediaTasks.js
+1 −0 src/app/components/media/MediaTypeDisplayName.js
+155 −0 src/app/components/media/RestoreConfirmProjectMediaToProjectAction.js
+14 −4 src/app/components/media/Similarity/MediaItem.js
+2 −0 src/app/components/media/Similarity/MediaSimilaritiesComponent.js
+2 −0 src/app/components/media/Similarity/MediaSuggestions.js
+20 −1 src/app/components/media/Similarity/MediaSuggestionsComponent.js
+2 −2 src/app/components/project/ProjectAssignment.js
+5 −5 src/app/components/search/SearchQueryComponent.js
+15 −0 src/app/components/search/SearchResultsTable/CommentCountCell.js
+15 −0 src/app/components/search/SearchResultsTable/ReactionCountCell.js
+16 −0 src/app/components/search/SearchResultsTable/RelatedCountCell.js
+16 −0 src/app/components/search/SearchResultsTable/SuggestionsCountCell.js
+32 −0 src/app/components/search/SearchResultsTable/index.js
+2 −2 src/app/components/search/Toolbar.js
+1 −1 src/app/components/team/SmoochBot/SmoochBotMultiTextEditor.js
+8 −8 src/app/components/team/SmoochBot/localizables.js
+1 −1 src/app/components/team/TeamInviteMembers.js
+18 −5 src/app/components/team/TeamLists/TeamListsComponent.js
+9 −0 src/app/components/team/TeamLists/index.js
+35 −0 src/app/components/team/Unconfirmed.js
+1 −1 src/app/globalStrings.js
+51 −11 src/app/relay/mutations/BulkRestoreProjectMediaMutation.js
+3 −0 src/app/relay/mutations/UpdateProjectMediaMutation.js
+4 −0 src/app/relay/mutations/optimisticProjectMedia.js
+1 −0 src/app/relay/teamPublicFragment.js
+14 −7 test/spec/media_spec.rb
+1 −1 test/spec/project_spec.rb
2 changes: 1 addition & 1 deletion pender

0 comments on commit 53e4339

Please sign in to comment.