summaryrefslogtreecommitdiff
path: root/app/frontend/pages/config.xml
blob: 379e643292f6bb1676a90376131c8cce56eb9e28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<configuration>

  <services>
    <service id="page"
             class="TPageService"
             ClientScriptManagerClass="Application.web.ClientScriptManager">
      <modules>
        <module id="theme"
                class="Application.web.ThemeManager"
                BasePath="Web._themes" />
      </modules>
    </service>
  </services>

  <pages MasterClass="Application.layouts.MainLayout"
         Theme="default"
         StatePersisterClass="System.Web.UI.TCachePageStatePersister"
         StatePersister.CacheModuleID="cache"
         StatePersister.CacheTimeout="3600" />

  <authorization>
    <allow pages="Admin" roles="Admin" />
    <deny pages="Admin" />
    <deny pages="Profile" users="?" />
  </authorization>

</configuration>