Factoring, Refactoring
* App.master: * yavscModel.csproj: * UserPost.aspx: * UserPosts.aspx: * StatusChange.cs: * IContentProvider.cs: * NpgsqlContentProvider.cs: * BlogsController.cs: unwanted message "Blogs" * style.css: More visibility for messages and error
This commit is contained in:
@ -47,11 +47,7 @@ namespace WorkFlowProvider
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public bool[] FinalStatuses {
|
||||
get {
|
||||
return new bool[] { false, true, true };
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public string Order (IWFOrder c)
|
||||
{
|
||||
@ -70,7 +66,12 @@ namespace WorkFlowProvider
|
||||
|
||||
public string[] StatusLabels {
|
||||
get {
|
||||
return new string[] { "Created", "Success", "Error" };
|
||||
return new string[] { "Created", "Validated", "Success", "Error" };
|
||||
}
|
||||
}
|
||||
public bool[] FinalStatuses {
|
||||
get {
|
||||
return new bool[] { false, false, true, true };
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user