| Summary: | LogMessage->author should be set on server | ||
|---|---|---|---|
| Product: | [Modeling] EMFStore | Reporter: | Andre Boehlke <ab> |
| Component: | ServerCore | Assignee: | Maximilian Koegel <mkoegel> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | emueller, mkoegel, t.s.verhoeven |
| Version: | unspecified | ||
| Target Milestone: | 0.9.3.M6 | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
This is true, we will fix this! The author is set on the server, too. ( VersionSubInterface createVersion() ) reported as fixed |
In the current implementation, the commit author is set on client. This should be done on the server. In ProjectSpaceImpl, it says: String commiter = "UNKOWN"; if (this.getUsersession().getACUser() != null && this.getUsersession().getACUser().getName() != null) { commiter = this.getUsersession().getACUser().getName(); } logMessage.setAuthor(commiter);