1. 30 8月, 2019 2 次提交
  2. 29 8月, 2019 3 次提交
  3. 28 8月, 2019 2 次提交
  4. 27 8月, 2019 4 次提交
  5. 24 8月, 2019 2 次提交
  6. 21 8月, 2019 2 次提交
  7. 17 8月, 2019 2 次提交
    • G
      Add new table to store email domain · 3b32ac56
      Gosia Ksionek 提交于
      In order to save user preferences regarding
      user emails allowed to be invited to group
      
      Add foreign_key and down method
      
      Change adding foreign key
      
      Add partial call to view
      
      Add changelog entry
      
      Fix schema
      3b32ac56
    • M
      Optimize DB indexes for ES indexing of notes · a3e71610
      Markus Koller 提交于
      To index notes, we exclude system notes and use `find_in_batches` to
      load them in batches for submission to the ES bulk import API.
      These queries often result in DB timeouts because the usage of
      `ORDER BY id` results in the `notes_pkey` index being used.
      
      This adds an optimized partial index, and removes the unused index
      `index_notes_on_noteable_type` which is already covered for our
      usage by the existing `index_notes_on_noteable_id_and_noteable_type`.
      
      Newer versions of PostgreSQL (at least 11) are smarter about this and
      use `index_notes_on_project_id_and_noteable_type` instead, so we might
      be able to remove the partial index again in the future.
      a3e71610
  8. 16 8月, 2019 2 次提交
    • A
      Migrations for Cycle Analytics backend · ca6cfde5
      Adam Hegyi 提交于
      This change lays the foundation for customizable cycle analytics stages.
      The main reason for the change is to extract the event definitions to
      separate objects (start_event, end_event) so that it could be easily
      customized later on.
      ca6cfde5
    • B
      Allow disabling group/project email notifications · 3489dc3d
      Brett Walker 提交于
      - Adds UI to configure in group and project settings
      - Removes notification configuration for users when
      disabled at group or project level
      3489dc3d
  9. 15 8月, 2019 1 次提交
  10. 14 8月, 2019 1 次提交
  11. 09 8月, 2019 1 次提交
  12. 08 8月, 2019 2 次提交
  13. 07 8月, 2019 3 次提交
  14. 06 8月, 2019 1 次提交
  15. 05 8月, 2019 2 次提交
  16. 02 8月, 2019 5 次提交
  17. 01 8月, 2019 1 次提交
    • K
      Add support for DAG · e7ee84aa
      Kamil Trzciński 提交于
      This implements the support for `needs:` keyword
      as part of GitLab CI. That makes some of the jobs
      to be run out of order.
      e7ee84aa
  18. 31 7月, 2019 1 次提交
    • M
      Add captcha if there are multiple failed login attempts · dfcf4cf5
      Małgorzata Ksionek 提交于
      Add method to store session ids by ip
      
      Add new specs for storing session ids
      
      Add cleaning up records after login
      
      Add retrieving anonymous sessions
      
      Add login recaptcha setting
      
      Add new setting to sessions controller
      
      Add conditions for showing captcha
      
      Add sessions controller specs
      
      Add admin settings specs for login protection
      
      Add new settings to api
      
      Add stub to devise spec
      
      Add new translation key
      
      Add cr remarks
      
      Rename class call
      
      Add cr remarks
      
      Change if-clause for consistency
      
      Add cr remarks
      
      Add code review remarks
      
      Refactor AnonymousSession class
      
      Add changelog entry
      
      Move AnonymousSession class to lib
      
      Move store unauthenticated sessions to sessions controller
      
      Move link to recaptcha info
      
      Regenerate text file
      
      Improve copy on the spam page
      
      Change action filter for storing anonymous sessions
      
      Fix rubocop offences
      
      Add code review remarks
      dfcf4cf5
  19. 30 7月, 2019 3 次提交