Files @ 157231a4fcb7
Branch filter:

Location: kallithea/rhodecode/lib/dbmigrate/migrate/changeset/databases/__init__.py - annotation

Marcin Kuzminski
move permission check of write access to repo groups inside a form.
- it's runned via create/edit/fork forms
- in case we have disabled repo creation, it will check root location write access for people that are not super admins, or have explicity create repo permission
- in case there's a group value passed to form, it checks just admin or write access
"""
   This module contains database dialect specific changeset
   implementations.
"""
__all__ = [
    'postgres',
    'sqlite',
    'mysql',
    'oracle',
]