mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
getTagIdsを追加
This commit is contained in:
parent
d61104d1ab
commit
d47832ac82
|
@ -35,6 +35,14 @@ public class DocumentMeta {
|
|||
return tags;
|
||||
}
|
||||
|
||||
public List<String> getTagIds() {
|
||||
List<String> tagIds = new ArrayList<>();
|
||||
for (DocumentTag tag : tags) {
|
||||
tagIds.add(tag.getId());
|
||||
}
|
||||
return tagIds;
|
||||
}
|
||||
|
||||
// Setter
|
||||
|
||||
public void setId(String id) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user