Skip to content
Snippets Groups Projects
  1. Jul 10, 2019
  2. Jun 26, 2019
    • Tanner Prestegard's avatar
      Bump version to 2.6.0 · 97c43281
      Tanner Prestegard authored
      97c43281
    • Tanner Prestegard's avatar
      Add AuthGroup model · c2b20c67
      Tanner Prestegard authored
      ligoauth.models.AuthGroup is an enhanced version of the builtin Django
      Group model. We add useful attributes like a description, ldap_name,
      and Tag.  These can be used to abstract things that are presently
      handled manually, like inheriting membership from an LDAP group or
      allowing access to view log messages/files with a specific Tag.
      
      I ran some tests comparing this multi-table inheritance setup to
      adding a OneToOneField and loading it with/without select_related.
      After 1K trials, the DB query times looked comparable and didn't
      require multiple queries for this arrangement, so the convenience
      seems to be worth it.
      
      The commit creates the model and populates an instance for existing
      each existing Django Group.
      c2b20c67
    • Tanner Prestegard's avatar
      Add "switch-based" public access decorator · 8dbb1e34
      Tanner Prestegard authored
      When applied, this makes a view publicly available *if* the
      settings.UNAUTHENTICATED_ACCESS switch is True; otherwise you
      must be authenticated. This will be useful to propagate to
      most other views to make this settings switch globally effective
      at some point.
      8dbb1e34
    • Tanner Prestegard's avatar
    • Tanner Prestegard's avatar
      Rework navbar a bit · 79ebf90f
      Tanner Prestegard authored
      Move some unused/non-functional menu items to live under a new
      "Other" item: create (event), reports, and RSS.
      79ebf90f
  3. Jun 11, 2019
  4. Jun 06, 2019
  5. May 14, 2019
  6. May 10, 2019
  7. May 02, 2019
  8. May 01, 2019
  9. Apr 23, 2019
  10. Apr 12, 2019
  11. Apr 09, 2019
  12. Mar 29, 2019
  13. Mar 28, 2019
    • Tanner Prestegard's avatar
      Change mechanism for sending emails · 2906f1d7
      Tanner Prestegard authored
      Instead of looping over EmailMessage.send() calls, we now get the
      email backend and send a list of messages. Note that the backend
      sends the messages individually still but this cuts out some of the
      overhead.
      2906f1d7
  14. Mar 13, 2019
  15. Mar 12, 2019
  16. Mar 06, 2019
  17. Mar 04, 2019
  18. Feb 28, 2019
Loading