1. 01 11月, 2016 2 次提交
  2. 28 10月, 2016 1 次提交
  3. 25 10月, 2016 1 次提交
  4. 21 10月, 2016 1 次提交
  5. 20 10月, 2016 8 次提交
  6. 19 10月, 2016 1 次提交
  7. 17 10月, 2016 1 次提交
  8. 13 10月, 2016 1 次提交
  9. 11 10月, 2016 3 次提交
  10. 10 10月, 2016 1 次提交
    • Y
      Precalculate trending projects · 237c8f66
      Yorick Peterse 提交于
      This commit introduces a Sidekiq worker that precalculates the list of
      trending projects on a daily basis. The resulting set is stored in a
      database table that is then queried by Project.trending.
      
      This setup means that Unicorn workers no longer _may_ have to calculate
      the list of trending projects. Furthermore it supports filtering without
      any complex caching mechanisms.
      
      The data in the "trending_projects" table is inserted in the same order
      as the project ranking. This means that getting the projects in the
      correct order is simply a matter of:
      
          SELECT projects.*
          FROM projects
          INNER JOIN trending_projects ON trending_projects.project_id = projects.id
          ORDER BY trending_projects.id ASC;
      
      Such a query will only take a few milliseconds at most (as measured on
      GitLab.com), opposed to a few seconds for the query used for calculating
      the project ranks.
      
      The migration in this commit does not require downtime and takes care of
      populating an initial list of trending projects.
      237c8f66
  11. 07 10月, 2016 1 次提交
    • N
      Add markdown cache columns to the database, but don't use them yet · e94cd6fd
      Nick Thomas 提交于
      This commit adds a number of _html columns and, with the exception of Note,
      starts updating them whenever the content of their partner fields changes.
      
      Note has a collision with the note_html attr_accessor; that will be fixed later
      
      A background worker for clearing these cache columns is also introduced - use
      `rake cache:clear` to set it off. You can clear the database or Redis caches
      separately by running `rake cache:clear:db` or `rake cache:clear:redis`,
      respectively.
      e94cd6fd
  12. 06 10月, 2016 1 次提交
  13. 05 10月, 2016 2 次提交
  14. 28 9月, 2016 1 次提交
    • R
      Allow Member.add_user to handle access requesters · ec0061a9
      Rémy Coutable 提交于
      Changes include:
      
      - Ensure Member.add_user is not called directly when not necessary
      - New GroupMember.add_users_to_group to have the same abstraction level as for Project
      - Refactor Member.add_user to take a source instead of an array of members
      - Fix Rubocop offenses
      - Always use Project#add_user instead of project.team.add_user
      - Factorize users addition as members in Member.add_users_to_source
      - Make access_level a keyword argument in GroupMember.add_users_to_group and ProjectMember.add_users_to_projects
      - Destroy any requester before adding them as a member
      - Improve the way we handle access requesters in Member.add_user
        Instead of removing the requester and creating a new member,
        we now simply accepts their access request. This way, they will
        receive a "access request granted" email.
      - Fix error that was previously silently ignored
      - Stop raising when access level is invalid in Member, let Rails validation do their work
      Signed-off-by: NRémy Coutable <remy@rymai.me>
      ec0061a9
  15. 22 9月, 2016 3 次提交
  16. 21 9月, 2016 3 次提交
  17. 16 9月, 2016 2 次提交
  18. 14 9月, 2016 2 次提交
  19. 13 9月, 2016 1 次提交
  20. 06 9月, 2016 1 次提交
  21. 01 9月, 2016 3 次提交