diff --git a/CHANGELOG.md b/CHANGELOG.md index a8194d52a..f152292e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Added - Add a new modification_time column to reports [#1513](https://github.com/greenbone/gvmd/pull/1513), [#1519](https://github.com/greenbone/gvmd/pull/1519), [#1590](https://github.com/greenbone/gvmd/pull/1590) - Add basic Sentry integration and logging [#1550](https://github.com/greenbone/gvmd/pull/1550) -- Add GMP get_license and modify_license [#1642](https://github.com/greenbone/gvmd/pull/1642) +- Add GMP get_license and modify_license [#1642](https://github.com/greenbone/gvmd/pull/1642), [#1696](https://github.com/greenbone/gvmd/pull/1696) ### Changed - Use pg-gvm extension for C PostgreSQL functions [#1400](https://github.com/greenbone/gvmd/pull/1400), [#1453](https://github.com/greenbone/gvmd/pull/1453) diff --git a/src/manage_sql.c b/src/manage_sql.c index e4134bf98..82c446e79 100644 --- a/src/manage_sql.c +++ b/src/manage_sql.c @@ -490,6 +490,7 @@ command_t gmp_commands[] {"GET_FILTERS", "Get all filters."}, {"GET_GROUPS", "Get all groups."}, {"GET_INFO", "Get raw information for a given item."}, + {"GET_LICENSE", "Get license information." }, {"GET_NOTES", "Get all notes."}, {"GET_NVTS", "Get one or all available NVTs."}, {"GET_NVT_FAMILIES", "Get a list of all NVT families."}, @@ -521,6 +522,7 @@ command_t gmp_commands[] {"MODIFY_CREDENTIAL", "Modify an existing credential."}, {"MODIFY_FILTER", "Modify an existing filter."}, {"MODIFY_GROUP", "Modify an existing group."}, + {"MODIFY_LICENSE", "Modify the existing license."}, {"MODIFY_NOTE", "Modify an existing note."}, {"MODIFY_OVERRIDE", "Modify an existing override."}, {"MODIFY_PERMISSION", "Modify an existing permission."},