BigW Consortium Gitlab

  1. 08 Jun, 2016 2 commits
    • Allow custom text on 'almost there' page · 40b6d906
      Sean McGivern authored
      Add a new application setting, after_sign_up_text. This is text to be
      rendered as Markdown and shown on the 'almost there' page after a user
      signs up, but before they've confirmed their account.
      
      Tweak the styles for that page so that centered lists look reasonable.
    • Remove notification settings in batches · 3883bc05
      Yorick Peterse authored
      This improves performance of the duplicate notification settings
      migration by removing duplicates in batches instead of using one big
      "DELETE FROM" query.
      
      The previous query would locally run over 45 minutes without even
      finishing. This new setup finished in a matter of seconds.
      
      Fixes #18289
  2. 06 Jun, 2016 2 commits
    • Sort by label priority · d8263b28
      Thijs Wouters authored
      Signed-off-by: 's avatarRémy Coutable <remy@rymai.me>
    • Add a `U2fRegistrations` table/model. · 791cc913
      Timothy Andrew authored
      - To hold registrations from U2F devices, and to authenticate them.
      - Previously, `User#two_factor_enabled` was aliased to the
        `otp_required_for_login` column on `users`.
      - This commit changes things a bit:
          - `User#two_factor_enabled` is not a method anymore
          - `User#two_factor_enabled?` checks both the
            `otp_required_for_login` column, as well as `U2fRegistration`s
          - Change all instances of `User#two_factor_enabled` to
            `User#two_factor_enabled?`
      - Add the `u2f` gem, and implement registration/authentication at the
        model level.
  3. 03 Jun, 2016 1 commit
  4. 01 Jun, 2016 1 commit
  5. 31 May, 2016 5 commits
  6. 30 May, 2016 1 commit
  7. 27 May, 2016 1 commit
  8. 25 May, 2016 1 commit
  9. 20 May, 2016 1 commit
  10. 19 May, 2016 4 commits
  11. 16 May, 2016 4 commits
  12. 13 May, 2016 1 commit
  13. 12 May, 2016 1 commit
  14. 11 May, 2016 1 commit
  15. 10 May, 2016 1 commit
  16. 09 May, 2016 1 commit
  17. 08 May, 2016 1 commit
  18. 06 May, 2016 1 commit
  19. 30 Apr, 2016 1 commit
  20. 29 Apr, 2016 1 commit
  21. 21 Apr, 2016 2 commits
  22. 20 Apr, 2016 5 commits
  23. 19 Apr, 2016 1 commit
    • Configuring of points per UDP packet · 229f3ce9
      Yorick Peterse authored
      This allows users to configure the number of points stored in a single
      UDP packet. This in turn can be used to reduce the number of UDP packets
      being sent at the cost of these packets being somewhat larger.
      
      The default setting is 1 point per packet so nothing changes for
      existing users.