Files
Orchard/src/Orchard.Web/Modules/Orchard.Comments/Controllers/CommentDriver.cs
Suha Can 854df4ea45 - Fixing type in namespace name.
--HG--
branch : dev
2010-03-01 14:31:34 -08:00

20 lines
603 B
C#

using JetBrains.Annotations;
using Orchard.Comments.Models;
using Orchard.ContentManagement;
using Orchard.ContentManagement.Drivers;
namespace Orchard.Comments.Controllers {
[UsedImplicitly]
public class CommentDriver : ContentItemDriver<Comment> {
public readonly static ContentType ContentType = new ContentType {
Name = "comment",
DisplayName = "Comment"
};
protected override ContentType GetContentType() {
return ContentType;
}
protected override string Prefix { get { return ""; } }
}
}