Nearly have send to publish working, it's all wired up in the UI to the controller, just need to implement the logic.

This commit is contained in:
Shannon
2013-10-31 18:17:30 +11:00
parent 90c62bddd9
commit 523c48d4fd
10 changed files with 125 additions and 89 deletions

View File

@@ -11,7 +11,7 @@
Save = 0,
/// <summary>
/// Saves a new content item
/// Creates a new content item
/// </summary>
SaveNew = 1,
@@ -21,8 +21,18 @@
Publish = 2,
/// <summary>
/// Saves an publishes a new content item
/// Creates and publishes a new content item
/// </summary>
PublishNew = 3
PublishNew = 3,
/// <summary>
/// Saves and sends publish notification
/// </summary>
SendPublish = 4,
/// <summary>
/// Creates and sends publish notification
/// </summary>
SendPublishNew = 5
}
}