mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 04:36:49 +08:00

* Commit form should not be cleared on error * move the type definition to ZIF_ABAPGIT_DEFINITION * Move type definition to new interface
15 lines
403 B
ABAP
15 lines
403 B
ABAP
INTERFACE zif_abapgit_services_git PUBLIC.
|
|
|
|
TYPES:
|
|
BEGIN OF ty_commit_fields,
|
|
repo_key TYPE zif_abapgit_persistence=>ty_repo-key,
|
|
committer_name TYPE string,
|
|
committer_email TYPE string,
|
|
author_name TYPE string,
|
|
author_email TYPE string,
|
|
comment TYPE string,
|
|
body TYPE string,
|
|
END OF ty_commit_fields.
|
|
|
|
ENDINTERFACE.
|