[Improvement][API] create project success return project id (#4927)
* create project success return project id. * update return data structure
This commit is contained in:
parent
d01b2c432e
commit
ba2bb22100
|
|
@ -14,6 +14,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.apache.dolphinscheduler.api.service.impl;
|
||||
|
||||
import static org.apache.dolphinscheduler.api.utils.CheckUtils.checkDesc;
|
||||
|
|
@ -97,7 +98,7 @@ public class ProjectServiceImpl extends BaseServiceImpl implements ProjectServic
|
|||
.build();
|
||||
|
||||
if (projectMapper.insert(project) > 0) {
|
||||
result.put(Constants.DATA_LIST, project);
|
||||
result.put(Constants.DATA_LIST, project.getId());
|
||||
putMsg(result, Status.SUCCESS);
|
||||
} else {
|
||||
putMsg(result, Status.CREATE_PROJECT_ERROR);
|
||||
|
|
|
|||
Loading…
Reference in New Issue