Files @ 100be6988bb0
Branch filter:

Location: kallithea/rhodecode/lib/vcs/backends/git/__init__.py

Marcin Kuzminski
show admin menu and list for users who are admins of repos.

- this is consistent with user groups, repo groups displaying.
- fixes 403s after you actually delete a repository being it's admin
1
2
3
4
5
6
7
8
9
from .repository import GitRepository
from .changeset import GitChangeset
from .inmemory import GitInMemoryChangeset
from .workdir import GitWorkdir


__all__ = [
    'GitRepository', 'GitChangeset', 'GitInMemoryChangeset', 'GitWorkdir',
]