1. 30 Jun, 2015 5 commits
  2. 28 Jun, 2015 2 commits
  3. 26 Jun, 2015 2 commits
  4. 24 Jun, 2015 1 commit
  5. 23 Jun, 2015 1 commit
  6. 21 Jun, 2015 1 commit
  7. 20 Jun, 2015 1 commit
  8. 19 Jun, 2015 1 commit
  9. 18 Jun, 2015 1 commit
  10. 14 Jun, 2015 14 commits
  11. 13 Jun, 2015 2 commits
  12. 10 Jun, 2015 2 commits
    • Serge S. Koval's avatar
      Merge pull request #891 from plaes/fileupload-overwrite · 38173f89
      Serge S. Koval authored
      Add an argument to FileUploadField to disallow overwriting existing f…
      38173f89
    • Serge S. Koval's avatar
      Fixed #846, #808. Refactored JOIN logic so it now works with relationship... · db3ee4b0
      Serge S. Koval authored
      Fixed #846, #808. Refactored JOIN logic so it now works with relationship properties instead of tables.
      
      This is partially incompatible change - you will have to update your custom filters. `apply` method now
      accepts additional `alias` argument. `alias` should be used to resolve column in query with specific JOIN path.
      
      Long story short, old code which was looking like this:
      
      ```python
      class MyFilter(SQLABaseFilter):
          def apply(self, query, value):
              return query.filter(self.column == value)
      ```
      
      Should look like this:
      
      ```python
      class MyFilter(SQLABaseFilter):
          def apply(self, query, value, alias=None):
              return query.filter(self.get_column(alias) == value)
      ```
      db3ee4b0
  13. 09 Jun, 2015 2 commits
  14. 04 Jun, 2015 3 commits
  15. 03 Jun, 2015 2 commits