webdav portal mobile view added, content type counted
This commit is contained in:
parent
4122caa16d
commit
346059195e
13 changed files with 111 additions and 41 deletions
|
@ -7,6 +7,7 @@ namespace WebsitePanel.WebDavPortal.WebConfigSections
|
|||
private const string ExtensionKey = "extension";
|
||||
private const string OwaViewKey = "OwaView";
|
||||
private const string OwaEditorKey = "OwaEditor";
|
||||
private const string OwaMobileViewKey = "OwaMobileView";
|
||||
|
||||
[ConfigurationProperty(ExtensionKey, IsKey = true, IsRequired = true)]
|
||||
public string Extension
|
||||
|
@ -28,5 +29,13 @@ namespace WebsitePanel.WebDavPortal.WebConfigSections
|
|||
get { return this[OwaEditorKey].ToString(); }
|
||||
set { this[OwaEditorKey] = value; }
|
||||
}
|
||||
|
||||
|
||||
[ConfigurationProperty(OwaMobileViewKey, IsKey = true, IsRequired = true)]
|
||||
public string OwaMobileViev
|
||||
{
|
||||
get { return this[OwaMobileViewKey].ToString(); }
|
||||
set { this[OwaMobileViewKey] = value; }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue