Where Piply keeps its own runs, logs, schedules, and accounts. This is not the databases your pipelines read from.
{{ database.row_counts.runs }} run(s), {{ database.row_counts.users }} account(s).
Piply connects before saving, so a wrong value is refused here. Without the copy the new database starts from whatever it already holds — usually nothing. The old database is never deleted either way, and copying needs an empty target.
Configured once here and reused by every type: email task and every pipeline notify: block. A task may still override any field inline.
Admins see everything. Other accounts only see the pipelines they are granted, and can only take the actions granted on each one.
| User | Role | State | Last login | Pipeline permissions | Actions |
|---|---|---|---|---|---|
| {{ item.username }} | {{ item.role }} | {% if item.is_active %}active{% else %}disabled{% endif %} | {{ item.last_login_at or "never" }} | {% if item.role == 'admin' %} {% elif item.permissions %} {% for pipeline_id, actions in item.permissions.items() %} {% endfor %} {% else %}none{% endif %} |
|