32 lines
892 B
C#
Executable File
32 lines
892 B
C#
Executable File
using ThoughtWorks.CruiseControl.WebDashboard.Dashboard;
|
|
|
|
namespace ThoughtWorks.CruiseControl.WebDashboard.Plugins.AddProject
|
|
{
|
|
// Commented by Mike Roberts - this is in development - please contact me if you change it
|
|
// public class AddProjectPlugin : IPluginLinkRenderer, IPlugin
|
|
// {
|
|
// public string LinkDescription
|
|
// {
|
|
// get { return "Add Project"; }
|
|
// }
|
|
//
|
|
// public string LinkActionName
|
|
// {
|
|
// get { return Actions[0].ActionName; }
|
|
// }
|
|
//
|
|
// public TypedAction[] Actions
|
|
// {
|
|
// get
|
|
// {
|
|
// return new TypedAction[]
|
|
// {
|
|
// new TypedAction("AddProjectDisplay", typeof(StartAddProjectPageAction)),
|
|
// new TypedAction(ContinueAddProjectPageAction.ACTION_NAME, typeof(ContinueAddProjectPageAction)),
|
|
// new TypedAction(SaveNewProjectAction.ACTION_NAME, typeof(SaveNewProjectAction))
|
|
// };
|
|
// }
|
|
// }
|
|
// }
|
|
}
|