Switch to unified view

a/ForgeSVN/forgesvn/svn_main.py b/ForgeSVN/forgesvn/svn_main.py
...
...
29
        super(ForgeSVNApp, self).__init__(project, config)
29
        super(ForgeSVNApp, self).__init__(project, config)
30
        self.root = BranchBrowser()
30
        self.root = BranchBrowser()
31
        default_root = RepoRootController()
31
        default_root = RepoRootController()
32
        self.root.refresh = default_root.refresh
32
        self.root.refresh = default_root.refresh
33
        self.root.feed = default_root.feed
33
        self.root.feed = default_root.feed
34
        self.root.commit_browser = default_root.commit_browser
34
35
35
    @LazyProperty
36
    @LazyProperty
36
    def repo(self):
37
    def repo(self):
37
        return SM.Repository.query.get(app_config_id=self.config._id)
38
        return SM.Repository.query.get(app_config_id=self.config._id)
38
39